Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use AFB.TestUtils in tests instead of ApproxFunBaseTest #942

Merged
merged 3 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading