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 d8aeb1e commit d5ea7c6Copy full SHA for d5ea7c6
.github/workflows/ci.yml
@@ -77,7 +77,7 @@ jobs:
77
DEST_FASTAPI: examples/fastapi
78
DEST_BLACKSHEEP: examples/blacksheep
79
PYTHONDEVMODE: 1
80
- PYTEST_ARGS: "-n auto --cov=tortoise --cov-append --tb=native -q"
+ PYTEST_ARGS: "-n auto --cov=tortoise --cov-append --cov-branch --tb=native -q"
81
- name: Upload Coverage
82
run: |
83
pip3 install --upgrade coveralls
Makefile
@@ -1,6 +1,6 @@
1
checkfiles = tortoise/ examples/ tests/ conftest.py
2
py_warn = PYTHONDEVMODE=1
3
-pytest_opts = -n auto --cov=tortoise --cov-append --tb=native -q
+pytest_opts = -n auto --cov=tortoise --cov-append --cov-branch --tb=native -q
4
5
TORTOISE_MYSQL_PASS ?= 123456
6
TORTOISE_POSTGRES_PASS ?= 123456
0 commit comments