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 b2ebde3 commit bb331cfCopy full SHA for bb331cf
bin/coverage.sh
@@ -8,9 +8,14 @@
8
#
9
# https://github.com/cython/cython/pull/6341
10
11
+# Arguments to this script are passed to python -m flint.test e.g. to skip
12
+# doctests and run in quiet mode:
13
+#
14
+# bin/coverage.sh -qt
15
16
set -o errexit
17
18
meson setup build -Dcoverage=true
-spin run -- coverage run -m flint.test
-coverage report -m
19
+spin run -- coverage run -m flint.test $@
20
+coverage report -m --sort=cover
21
coverage html
0 commit comments