Skip to content

Commit e5b081b

Browse files
committed
Move --color=yes to CI env
1 parent 6a66c88 commit e5b081b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ jobs:
66
test:
77
runs-on: ${{ matrix.os }}
88
continue-on-error: ${{ matrix.experimental }}
9+
env:
10+
PYTEST_ADDOPTS: --color=yes
911
strategy:
1012
fail-fast: false
1113
matrix:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ docs:
88
pipenv run $(MAKE) -C docs html
99

1010
coverage:
11-
pipenv run coverage run -m pytest --color=yes
11+
pipenv run coverage run -m pytest
1212
pipenv run coverage html
1313
open htmlcov/index.html
1414
echo "Press ENTER to continue..."
@@ -17,7 +17,7 @@ coverage:
1717
rm .coverage
1818

1919
test:
20-
pipenv run pytest --color=yes
20+
pipenv run pytest
2121

2222
pipenv-init:
2323
pipenv install --dev

0 commit comments

Comments
 (0)