Skip to content

Commit 71c86d0

Browse files
committed
force pytest to color the output
Signed-off-by: oleg.hoefling <[email protected]>
1 parent d1c23fd commit 71c86d0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test: off
2828
test_script:
2929
- pip install -r requirements-test.txt
3030
- pip install xmlsec --only-binary=xmlsec --no-index --find-links=dist
31-
- pytest -v
31+
- pytest -v --color=yes
3232
- ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
3333

3434
deploy: on

.github/workflows/manylinux2010.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
/opt/python/${{ matrix.python-abi }}/bin/pip install xmlsec --only-binary=xmlsec --no-index --find-links=wheelhouse/
3535
- name: Run tests
3636
run: |
37-
/opt/python/${{ matrix.python-abi }}/bin/pytest -v
37+
/opt/python/${{ matrix.python-abi }}/bin/pytest -v --color=yes
3838
- name: Upload dist
3939
if: startsWith(github.ref, 'refs/tags/')
4040
env:

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ install:
3838
- travis_retry pip install coverage codecov -r requirements-test.txt --upgrade --force-reinstall
3939
- travis_retry pip install -e "."
4040
- pip list
41-
script: coverage run -m pytest -v tests
41+
script: coverage run -m pytest -v tests --color=yes
4242
after_success:
4343
- lcov --capture --directory . --output-file coverage.info
4444
- lcov --list coverage.info

0 commit comments

Comments
 (0)