##// END OF EJS Templates
remove json report files
M Bussonnier -
Show More
@@ -72,13 +72,13 b' jobs:'
72 72 run: |
73 73 python -m pip install --only-binary ':all:' --upgrade pip setuptools wheel build
74 74 python -m pip install --only-binary ':all:' --no-binary curio --upgrade -e .[${{ matrix.deps }}]
75 python -m pip install --only-binary ':all:' --upgrade check-manifest pytest-cov pytest-json-report 'pytest<8'
75 python -m pip install --only-binary ':all:' --upgrade check-manifest pytest-cov 'pytest<8'
76 76 - name: Install and update Python dependencies (dev?)
77 77 if: ${{ contains( matrix.python-version, 'dev' ) }}
78 78 run: |
79 79 python -m pip install --pre --upgrade pip setuptools wheel build
80 80 python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --no-binary curio --upgrade -e .[${{ matrix.deps }}]
81 python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --upgrade check-manifest pytest-cov pytest-json-report
81 python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --upgrade check-manifest pytest-cov
82 82 - name: Try building with Python build
83 83 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
84 84 run: |
@@ -101,13 +101,7 b' jobs:'
101 101 env:
102 102 COLUMNS: 120
103 103 run: |
104 pytest --color=yes -raXxs ${{ startsWith(matrix.python-version, 'pypy') && ' ' || '--cov --cov-report=xml' }} --json-report --json-report-file=./report-${{ matrix.python-version }}-${{runner.os}}.json --maxfail=15
105 - uses: actions/upload-artifact@v3
106 with:
107 name: upload pytest timing reports as json
108 path: |
109 ./report-*.json
110
104 pytest --color=yes -raXxs ${{ startsWith(matrix.python-version, 'pypy') && ' ' || '--cov --cov-report=xml' }} --maxfail=15
111 105 - name: Upload coverage to Codecov
112 106 uses: codecov/codecov-action@v4
113 107 with:
General Comments 0
You need to be logged in to leave comments. Login now