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 b12690c commit f79f46eCopy full SHA for f79f46e
scripts/test-cov-html.sh
@@ -3,4 +3,7 @@
3
set -e
4
set -x
5
6
-bash scripts/test.sh --cov-report=html ${@}
+bash scripts/test.sh ${@}
7
+coverage combine
8
+coverage report --show-missing
9
+coverage html
scripts/test.sh
@@ -3,9 +3,4 @@
-# For tests, a large terminal width
-export TERMINAL_WIDTH=3000
-# Force disable terminal for tests inside of pytest, takes precedence over GITHUB_ACTIONS env var
-export _TYPER_FORCE_DISABLE_TERMINAL=1
10
-# It seems xdist-pytest ensures modified sys.path to import relative modules in examples keeps working
11
-pytest --cov --cov-report=term-missing -o console_output_style=progress --numprocesses=auto ${@}
+coverage run -m pytest tests ${@}
0 commit comments