mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-06-08 05:55:42 +09:00
add(test): add Aqua test
This commit is contained in:
parent
984083657a
commit
3d4865c18f
2 changed files with 21 additions and 2 deletions
11
Project.toml
11
Project.toml
|
@ -23,18 +23,25 @@ InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
|
||||||
PSBoardDataBaseInteractiveUtilsExt = "InteractiveUtils"
|
PSBoardDataBaseInteractiveUtilsExt = "InteractiveUtils"
|
||||||
|
|
||||||
[compat]
|
[compat]
|
||||||
|
julia = "1.10"
|
||||||
|
Aqua = "0.8"
|
||||||
AutoHashEquals = "2.2"
|
AutoHashEquals = "2.2"
|
||||||
CSV = "0.10"
|
CSV = "0.10"
|
||||||
DBInterface = "2"
|
DBInterface = "2"
|
||||||
DataFrames = "1"
|
DataFrames = "1"
|
||||||
Documenter = "1"
|
Dates = "1.10"
|
||||||
|
Documenter = "1.7"
|
||||||
Downloads = "1"
|
Downloads = "1"
|
||||||
|
InteractiveUtils = "1.10"
|
||||||
|
Printf = "1.10"
|
||||||
SQLite = "1"
|
SQLite = "1"
|
||||||
StaticArrays = "1.9"
|
StaticArrays = "1.9"
|
||||||
Tables = "1"
|
Tables = "1"
|
||||||
|
Test = "1.10"
|
||||||
|
|
||||||
[extras]
|
[extras]
|
||||||
|
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
|
||||||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
|
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
|
||||||
|
|
||||||
[targets]
|
[targets]
|
||||||
test = ["Test"]
|
test = ["Aqua", "Test"]
|
||||||
|
|
|
@ -210,3 +210,15 @@ true || include("../src/PSBoardDataBase.jl")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
using Aqua
|
||||||
|
|
||||||
|
@testset "Aqua.jl" begin
|
||||||
|
Aqua.test_all(
|
||||||
|
PSBoardDataBase;
|
||||||
|
# ambiguities = (exclude = [], broken = true),
|
||||||
|
stale_deps = (ignore = Symbol[:Documenter],),
|
||||||
|
# deps_compat = (ignore = Symbol[],),
|
||||||
|
# piracies = false,
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue