
Revert " 👷 Add Codecov to CI, Smokeshow/Cloudflare has been flaky lately (#1303)" This reverts commit 759220d5928af4a01c205a039eb9826456a475cd.
10 lines
112 B
Bash
Executable File
10 lines
112 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
coverage run -m pytest tests
|
|
coverage combine
|
|
coverage report
|
|
coverage html
|