Skip to content

Commit 4cc6ea6

Browse files
committed
Fix CI for Aqua.jl tests
1 parent 8da8b9e commit 4cc6ea6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ jobs:
5050
uses: julia-actions/julia-buildpkg@v1
5151
- name: "Run tests"
5252
run: |
53-
julia --color=yes --project=. -e 'import Pkg; Pkg.add("Coverage")'
54-
julia --color=yes --inline=yes --depwarn=yes --code-coverage=user --project=. -e 'import Pkg; Pkg.test(coverage=true)'
55-
julia --color=yes --project=. coverage.jl
53+
julia --color=yes -e 'import Pkg; Pkg.add("Coverage")'
54+
julia --color=yes --threads=auto --check-bounds=yes --depwarn=yes --code-coverage=user -e 'import Coverage; import Pkg; Pkg.activate("."); Pkg.test(coverage=true)'
55+
julia --color=yes coverage.jl
5656
shell: bash
5757
- name: Coveralls
5858
uses: coverallsapp/github-action@v2

test/test_aqua.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
using DynamicExpressions
22
using Aqua
33

4-
Aqua.test_all(DynamicExpressions)
4+
Aqua.test_all(DynamicExpressions; project_toml_formatting=false)

0 commit comments

Comments
 (0)