Skip to content

Commit

Permalink
Use AFB.TestUtils in tests instead of ApproxFunBaseTest (#942)
Browse files Browse the repository at this point in the history
* Use AFB.TestUtils in tests instead of ApproxFunBaseTest

* Add uniondomain to docs

* Ignore doc changes in CI
  • Loading branch information
jishnub authored Jun 10, 2024
1 parent bf85bb5 commit 0c95da3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ on:
- 'README.md'
- '.github/workflows/TagBot.yml'
- '.github/workflows/docs.yml'
- 'docs/*'
- 'docs/**'
pull_request:
paths-ignore:
- 'LICENSE.md'
- 'README.md'
- '.github/workflows/TagBot.yml'
- '.github/workflows/docs.yml'
- 'docs/*'
- 'docs/**'

concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
Expand Down
16 changes: 7 additions & 9 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ApproxFun"
uuid = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
version = "0.13.26"
version = "0.13.27"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand All @@ -26,32 +26,30 @@ ApproxFunDualNumbersExt = "DualNumbers"

[compat]
AbstractFFTs = "1.0"
ApproxFunBase = "0.8.44, 0.9"
ApproxFunBaseTest = "0.1"
ApproxFunBase = "0.8.67, 0.9.28"
ApproxFunFourier = "0.3"
ApproxFunOrthogonalPolynomials = "0.5, 0.6"
ApproxFunSingularities = "0.3.10"
Aqua = "0.8"
BandedMatrices = "0.16, 0.17, 1"
BlockBandedMatrices = "0.11, 0.12"
BlockBandedMatrices = "0.11, 0.12, 0.13"
Calculus = "0.5"
Documenter = "0.27, 1"
DomainSets = "0.3, 0.4, 0.5, 0.6, 0.7"
DualNumbers = "0.6.2"
FFTW = "1"
FastTransforms = "0.13, 0.14, 0.15, 0.16"
IntervalSets = "0.7.5"
LinearAlgebra = "1.6"
Random = "1.6"
LinearAlgebra = "1"
Random = "1"
RecipesBase = "1.0"
Reexport = "1.0"
SpecialFunctions = "1.1, 2"
StaticArrays = "1"
Test = "1.6"
Test = "1"
julia = "1.6"

[extras]
ApproxFunBaseTest = "a931bfaf-0cfd-4a5c-b69c-bf2eed002b43"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"
Expand All @@ -63,4 +61,4 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["ApproxFunBaseTest", "Aqua", "BandedMatrices", "BlockBandedMatrices", "Documenter", "DualNumbers", "FFTW", "Random", "Test"]
test = ["Aqua", "BandedMatrices", "BlockBandedMatrices", "Documenter", "DualNumbers", "FFTW", "Random", "Test"]
4 changes: 4 additions & 0 deletions docs/src/library.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ Ray
UnionDomain
```

```@docs
uniondomain
```

```@docs
```
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ using LinearAlgebra
using SpecialFunctions
using ApproxFunBase
using ApproxFunBase: blocklengths, ∞, blockbandwidths, subblockbandwidths
using ApproxFunBaseTest: testbandedblockbandedoperator
using ApproxFunBase.TestUtils: testbandedblockbandedoperator

using Aqua
@testset "Project quality" begin
Expand Down

2 comments on commit 0c95da3

@jishnub
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/108704

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.13.27 -m "<description of version>" 0c95da3b895bc591428533123768b49ebee38182
git push origin v0.13.27

Please sign in to comment.