File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,16 @@ jobs:
3535 iptest
3636 - name: Run tests nbconvert
3737 run: |
38- pytest --pyargs nbconvert -p no:unraisableexception -k 'not network'
38+ pytest --cov traitlets --cov-report=xml:coverage-from-nbconvert.xml \
39+ --pyargs nbconvert -p no:unraisableexception -k 'not network'
3940 - name: Run tests notebook
4041 run: |
41- pytest --pyargs notebook -k 'not selenium and not integration_tests'
42+ pytest --cov traitlets --cov-report=xml:coverage-from-notebook.xml \
43+ --pyargs notebook -k 'not selenium and not integration_tests'
4244 - name: Run tests ipywidgets
4345 run: |
44- pytest --pyargs ipywidgets
46+ pytest --cov traitlets --cov-report=xml:coverage-from-ipywidgets.xml \
47+ --pyargs ipywidgets
4548
4649 - name: Upload coverage to Codecov
47- uses: codecov/codecov-action@v1
50+ uses: codecov/codecov-action@v2
Original file line number Diff line number Diff line change 4242
4343 - name: Test with pytest
4444 run: |
45- pytest --cov traitlets -v traitlets
45+ pytest --cov traitlets --cov-report=xml - v traitlets
4646
4747 - name: Upload coverage to Codecov
48- uses: codecov/codecov-action@v1
48+ uses: codecov/codecov-action@v2
You can’t perform that action at this time.
0 commit comments