##// END OF EJS Templates
CI: Colorize and widen Pytest summary...
Nikita Kniazev -
Show More
@@ -44,7 +44,9 b' jobs:'
44 cp /tmp/ipy_coverage.xml ./
44 cp /tmp/ipy_coverage.xml ./
45 cp /tmp/.coverage ./
45 cp /tmp/.coverage ./
46 - name: pytest
46 - name: pytest
47 env:
48 COLUMNS: 120
47 run: |
49 run: |
48 pytest -v --cov --cov-report=xml
50 pytest --color=yes -v --cov --cov-report=xml
49 - name: Upload coverage to Codecov
51 - name: Upload coverage to Codecov
50 uses: codecov/codecov-action@v2
52 uses: codecov/codecov-action@v2
@@ -3,6 +3,9 b' matrix:'
3 fast_finish: true # immediately finish build once one of the jobs fails.
3 fast_finish: true # immediately finish build once one of the jobs fails.
4
4
5 environment:
5 environment:
6 global:
7 COLUMNS: 120 # Appveyor web viwer window width is 130 chars
8
6 matrix:
9 matrix:
7
10
8 - PYTHON: "C:\\Python37-x64"
11 - PYTHON: "C:\\Python37-x64"
@@ -30,7 +33,7 b' install:'
30 test_script:
33 test_script:
31 - iptest --coverage xml
34 - iptest --coverage xml
32 - cd ..
35 - cd ..
33 - pytest -ra --cov --cov-report=xml
36 - pytest --color=yes -ra --cov --cov-report=xml
34 on_finish:
37 on_finish:
35 - curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
38 - curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
36 - codecov -e PYTHON_VERSION,PYTHON_ARCH
39 - codecov -e PYTHON_VERSION,PYTHON_ARCH
General Comments 0
You need to be logged in to leave comments. Login now