We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cab554b commit 2e6e7beCopy full SHA for 2e6e7be
.github/workflows/run_tests.yml
@@ -22,13 +22,10 @@ jobs:
22
run: python -m pytest tests -m "not slow"
23
24
- name: Run unit tests with coverage
25
- run: |
26
- coverage run --source=effector -m pytest tests -m "not slow"
27
- coverage report -m
28
- coverage xml
+ run: pytest --cov --cov-branch --cov-report=xml
29
30
- name: Upload coverage to Codecov
31
- uses: codecov/codecov-action@v4
+ uses: codecov/codecov-action@v5
32
with:
33
- files: ./coverage.xml
34
- fail_ci_if_error: true
+ token: ${{ secrets.CODECOV_TOKEN }}
+ slug: givasile/effector
0 commit comments