We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5573f5f commit c0095c5Copy full SHA for c0095c5
.github/workflows/CI.yml
@@ -37,10 +37,15 @@ jobs:
37
- run: |
38
# Run tests
39
julia --project=test --color=auto --startup-file=yes --code-coverage="user" --depwarn="yes" --check-bounds="yes" -e 'include("test/runtests.jl")'
40
+ - run: |
41
+ # Run upstream "GRAPE" tests
42
+ julia --project=test -e '
43
+ using Pkg
44
+ Pkg.test("GRAPE", coverage=true)'
45
- uses: julia-actions/julia-processcoverage@v1
46
47
# Summarize coverage
- julia --project=test -e 'using QuantumControlBase.TestUtils; show_coverage();'
48
+ julia --project=test -e 'using QuantumControlTestUtils; show_coverage();'
49
- uses: codecov/codecov-action@v2
50
with:
51
files: lcov.info
0 commit comments