Skip to content

Commit

Permalink
CI: Add monomorphisation tests to CI (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alasdair authored Feb 14, 2025
1 parent bceade0 commit 39ff330
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions etc/ci_coverage_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ elif [ "$1" = "prover" ]; then
elif [ "$1" = "other" ]; then
test/lexing/run_tests.py || returncode=1
test/pattern_completeness/run_tests.py || returncode=1
test/mono/run_tests.py || returncode=1
test/sailcov/run_tests.py || returncode=1
test/format/run_tests.py || returncode=1
test/oneoff/run_tests.py || returncode=1
Expand Down
2 changes: 1 addition & 1 deletion test/mono/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def test():
return results.finish()

xml = '<testsuites>\n'
xml = test()
xml += test()
xml += '</testsuites>\n'

output = open('tests.xml', 'w')
Expand Down

0 comments on commit 39ff330

Please sign in to comment.