File tree Expand file tree Collapse file tree 7 files changed +3164
-36
lines changed Expand file tree Collapse file tree 7 files changed +3164
-36
lines changed Original file line number Diff line number Diff line change 99 - cron : " 0 0 * * *"
1010
1111jobs :
12- lint :
13- runs-on : ubuntu-latest
14- steps :
15- - uses : actions/checkout@v2.4.0
16- - uses : actions/setup-python@v2.2.2
17- - uses : pre-commit/action@v2.0.3
18-
1912 test :
2013 name : ${{ matrix.python-version }}-build
2114 runs-on : ubuntu-latest
2518 steps :
2619 - uses : actions/checkout@v2.4.0
2720 - name : Setup Python
28- uses : actions/setup-python@v2.2.2
21+ uses : actions/setup-python@v2.3.0
2922 with :
3023 python-version : ${{ matrix.python-version }}
3124 architecture : x64
4134 python -m pip list
4235 - name : Running Tests
4336 run : |
44- python -m pytest --verbose
37+ py.test --verbose --cov=. --cov-report=xml
38+ - name : Upload coverage to Codecov
39+ uses : codecov/codecov-action@v2.1.0
40+ if : ${{ matrix.python-version }} == 3.9
41+ with :
42+ file : ./coverage.xml
43+ fail_ci_if_error : false
4544
4645 test-upstream :
4746 name : ${{ matrix.python-version }}-dev-build
5251 steps :
5352 - uses : actions/checkout@v2.4.0
5453 - name : Setup Python
55- uses : actions/setup-python@v2.2.2
54+ uses : actions/setup-python@v2.3.0
5655 with :
5756 python-version : ${{ matrix.python-version }}
5857 architecture : x64
7170 python -m pip list
7271 - name : Running Tests
7372 run : |
74- python -m pytest --verbose
73+ py.test --verbose --cov=.
Original file line number Diff line number Diff line change 1+ ci :
2+ autoupdate_schedule : quarterly
3+ autofix_prs : false
4+
15repos :
26 - repo : https://github.com/pre-commit/pre-commit-hooks
37 rev : v4.0.1
Original file line number Diff line number Diff line change 11pytest
2- coverage
2+ pytest-cov
3+ adlfs
34-r requirements.txt
You can’t perform that action at this time.
0 commit comments