Skip to content

Commit 0c95da3

Browse files
authored
Use AFB.TestUtils in tests instead of ApproxFunBaseTest (#942)
* Use AFB.TestUtils in tests instead of ApproxFunBaseTest * Add uniondomain to docs * Ignore doc changes in CI
1 parent bf85bb5 commit 0c95da3

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ on:
88
- 'README.md'
99
- '.github/workflows/TagBot.yml'
1010
- '.github/workflows/docs.yml'
11-
- 'docs/*'
11+
- 'docs/**'
1212
pull_request:
1313
paths-ignore:
1414
- 'LICENSE.md'
1515
- 'README.md'
1616
- '.github/workflows/TagBot.yml'
1717
- '.github/workflows/docs.yml'
18-
- 'docs/*'
18+
- 'docs/**'
1919

2020
concurrency:
2121
group: build-${{ github.event.pull_request.number || github.ref }}

Project.toml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFun"
22
uuid = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
3-
version = "0.13.26"
3+
version = "0.13.27"
44

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

2727
[compat]
2828
AbstractFFTs = "1.0"
29-
ApproxFunBase = "0.8.44, 0.9"
30-
ApproxFunBaseTest = "0.1"
29+
ApproxFunBase = "0.8.67, 0.9.28"
3130
ApproxFunFourier = "0.3"
3231
ApproxFunOrthogonalPolynomials = "0.5, 0.6"
3332
ApproxFunSingularities = "0.3.10"
3433
Aqua = "0.8"
3534
BandedMatrices = "0.16, 0.17, 1"
36-
BlockBandedMatrices = "0.11, 0.12"
35+
BlockBandedMatrices = "0.11, 0.12, 0.13"
3736
Calculus = "0.5"
3837
Documenter = "0.27, 1"
3938
DomainSets = "0.3, 0.4, 0.5, 0.6, 0.7"
4039
DualNumbers = "0.6.2"
4140
FFTW = "1"
4241
FastTransforms = "0.13, 0.14, 0.15, 0.16"
4342
IntervalSets = "0.7.5"
44-
LinearAlgebra = "1.6"
45-
Random = "1.6"
43+
LinearAlgebra = "1"
44+
Random = "1"
4645
RecipesBase = "1.0"
4746
Reexport = "1.0"
4847
SpecialFunctions = "1.1, 2"
4948
StaticArrays = "1"
50-
Test = "1.6"
49+
Test = "1"
5150
julia = "1.6"
5251

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

6563
[targets]
66-
test = ["ApproxFunBaseTest", "Aqua", "BandedMatrices", "BlockBandedMatrices", "Documenter", "DualNumbers", "FFTW", "Random", "Test"]
64+
test = ["Aqua", "BandedMatrices", "BlockBandedMatrices", "Documenter", "DualNumbers", "FFTW", "Random", "Test"]

docs/src/library.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ Ray
4545
UnionDomain
4646
```
4747

48+
```@docs
49+
uniondomain
50+
```
51+
4852
```@docs
4953
5054
```

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ using LinearAlgebra
77
using SpecialFunctions
88
using ApproxFunBase
99
using ApproxFunBase: blocklengths, ∞, blockbandwidths, subblockbandwidths
10-
using ApproxFunBaseTest: testbandedblockbandedoperator
10+
using ApproxFunBase.TestUtils: testbandedblockbandedoperator
1111

1212
using Aqua
1313
@testset "Project quality" begin

0 commit comments

Comments
 (0)