File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -59,16 +59,16 @@ jobs:
59
59
shell : bash -l {0}
60
60
run : tox -e test -- tests -m "unit or (not integration and not end_to_end)" --cov=src --cov=tests --cov-report=xml
61
61
62
- - name : Upload coverage report for unit tests and doctests.
63
- if : runner.os == 'Linux' && matrix.python-version == '3.10'
64
- shell : bash -l {0}
65
- run : bash <(curl -s https://codecov.io/bash) -F unit -c
62
+ - name : Upload unit test coverage reports to Codecov with GitHub Action
63
+ uses : codecov/codecov-action@v4
64
+ with :
65
+ flags : unit
66
66
67
67
- name : Run end-to-end tests.
68
68
shell : bash -l {0}
69
69
run : tox -e test -- tests -m end_to_end --cov=src --cov=tests --cov-report=xml
70
70
71
- - name : Upload coverage reports of end-to-end tests.
72
- if : runner.os == 'Linux' && matrix.python-version == '3.10'
73
- shell : bash -l {0}
74
- run : bash <(curl -s https://codecov.io/bash) -F end_to_end -c
71
+ - name : Upload end_to_end test coverage reports to Codecov with GitHub Action
72
+ uses : codecov/codecov-action@v4
73
+ with :
74
+ flags : end_to_end
You can’t perform that action at this time.
0 commit comments