There was an error while loading. Please reload this page.
1 parent 6a66c88 commit e5b081bCopy full SHA for e5b081b
2 files changed
.github/workflows/build.yml
@@ -6,6 +6,8 @@ jobs:
6
test:
7
runs-on: ${{ matrix.os }}
8
continue-on-error: ${{ matrix.experimental }}
9
+ env:
10
+ PYTEST_ADDOPTS: --color=yes
11
strategy:
12
fail-fast: false
13
matrix:
Makefile
@@ -8,7 +8,7 @@ docs:
pipenv run $(MAKE) -C docs html
coverage:
- pipenv run coverage run -m pytest --color=yes
+ pipenv run coverage run -m pytest
pipenv run coverage html
open htmlcov/index.html
14
echo "Press ENTER to continue..."
@@ -17,7 +17,7 @@ coverage:
17
rm .coverage
18
19
20
- pipenv run pytest --color=yes
+ pipenv run pytest
21
22
pipenv-init:
23
pipenv install --dev
0 commit comments