File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 14
14
test :
15
15
runs-on : ${{ matrix.os }}
16
16
strategy :
17
+ fail-fast : false
17
18
matrix :
18
19
os : [macos-latest, ubuntu-latest, windows-latest]
19
20
python-version : ["3.8", "3.9", "3.10"]
37
38
- name : " test python packages"
38
39
run : poetry run pytest --junitxml=test-results/python-${{ matrix.python-version }}/test-results.xml --cov=robotcode --cov-report=xml:testresults/python-${{ matrix.python-version }}/coverage.xml --cov-report=html:test-results/python-${{ matrix.python-version }}/htmlcov
39
40
40
- - uses : actions/upload-artifact@v2
41
+ - name : upload test results
42
+ if : always()
43
+ uses : actions/upload-artifact@v2
41
44
with :
42
45
name : test-results-${{ matrix.os }}-${{ matrix.python-version }}
43
46
path : test-results
You can’t perform that action at this time.
0 commit comments