Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build-known-test-failures.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,10 @@ jobs:
ln -s $(pwd)/.coverage /sage/
cd /sage
./sage -python -m pip install coverage
./sage -python -m coverage run --rcfile=src/tox.ini src/bin/sage-runtests --force-lib --long -p4 --format github --random-seed=286735480429121101562228604801325644303 ${{ matrix.tests }}
./sage -python -m coverage run --rcfile=src/tox.ini src/bin/sage-runtests \
--force-lib --long -p4 --format github \
--random-seed=286735480429121101562228604801325644303 ${{ matrix.tests }} \
--baseline-stats-path=.github/workflows/build-known-test-failures.json
shell: sh .ci/docker-exec-script.sh BUILD . {0}

- name: Combine coverage results
Expand Down
Loading