Skip to content

Commit

Permalink
Add compat for Requires (#35)
Browse files Browse the repository at this point in the history
* Better testing for compat

* Add compat for Requires
  • Loading branch information
tkf authored May 30, 2021
1 parent 6c253c8 commit 892eb8c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 15 deletions.
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ DefineSingletons = "0.1.1"
InitialValues = "0.2.10"
MicroCollections = "0.1.0"
Referenceables = "0.1.2"
Requires = "0.5, 1.0"
Transducers = "0.4.35"
julia = "1.4"

Expand Down
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Transducers = "28d57a85-8fef-5791-bfe6-a80928e7c999"

[compat]
Aqua = "0.4.1"
Aqua = "0.5"
Documenter = "0.24"
4 changes: 2 additions & 2 deletions test/environments/main/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ version = "2.4.0"

[[Aqua]]
deps = ["Pkg", "Test"]
git-tree-sha1 = "58c988b7d09ace6afc91308ce8ddfd0fc268c86f"
git-tree-sha1 = "b28b1f08e814090ef35eec6ab974264b3a93c862"
uuid = "4c88cf16-eb10-579e-8560-4a9242c79595"
version = "0.4.11"
version = "0.5.0"

[[ArgCheck]]
git-tree-sha1 = "dedbbb2ddb876f899585c4ec4433265e3017215a"
Expand Down
2 changes: 1 addition & 1 deletion test/environments/main/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Transducers = "28d57a85-8fef-5791-bfe6-a80928e7c999"

[compat]
Aqua = "0.4.1"
Aqua = "0.5"
Documenter = "0.24"
12 changes: 1 addition & 11 deletions test/test_aqua.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,7 @@ using Test
Aqua.test_ambiguities(Folds)
end

@testset "Unbound type parameters" begin
Aqua.test_unbound_args(Folds)
end

@testset "Undefined exports" begin
Aqua.test_undefined_exports(Folds)
end

@testset "Compare Project.toml and test/Project.toml" begin
Aqua.test_project_extras(Folds)
end
Aqua.test_all(Folds; ambiguities = false)

@testset "Compare test/Project.toml and test/environments/main/Project.toml" begin
@test Text(read(joinpath(@__DIR__, "Project.toml"), String)) ==
Expand Down

0 comments on commit 892eb8c

Please sign in to comment.