We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 415dfe5 commit c3629daCopy full SHA for c3629da
.github/workflows/main.yml
@@ -33,7 +33,7 @@ jobs:
33
if: github.repository == 'jthomperoo/locust-pod-autoscaler'
34
with:
35
token: ${{secrets.CODECOV_TOKEN}}
36
- file: ./.coverage
+ file: ./coverage.xml
37
flags: unittests
38
name: locust-pod-autoscaler-unittests
39
- name: Deploy
.gitignore
@@ -1,3 +1,4 @@
1
*.csv
2
.coverage
3
-__pycache__
+__pycache__
4
+coverage.xml
Makefile
@@ -9,6 +9,7 @@ default:
9
unittest:
10
@echo "=============Running unit tests============="
11
coverage run --omit="*/test*" -m pytest
12
+ coverage xml
13
14
lint:
15
@echo "=============Linting============="
0 commit comments