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 cb223a1 commit 4c84576Copy full SHA for 4c84576
3 files changed
.github/workflows/python-app.yml
@@ -26,4 +26,4 @@ jobs:
26
pip install poetry tox
27
poetry install
28
- name: Run Tox
29
- run: tox
+ run: tox -- --no-cov
.travis.yml
@@ -14,4 +14,4 @@ install:
14
- pip install tox-travis
15
16
# command to run tests
17
-script: tox
+script: tox -- --no-cov
tox.ini
@@ -1,5 +1,5 @@
1
[tox]
2
-envlist = py38,flake8
+envlist = flake8,py38
3
recreate=true
4
5
[testenv]
@@ -10,10 +10,9 @@ deps =
10
pytest-timeout
11
12
commands =
13
- py.test \
+ py.test {posargs: \
--cov-report html:htmlcov/{envname} \
- --cov . \
- {posargs}
+ --cov . }
18
[flake8]
19
max-line-length = 120
0 commit comments