File tree 1 file changed +12
-7
lines changed 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -44,20 +44,25 @@ jobs:
44
44
45
45
- run :
46
46
name : Unit Tests
47
- command : poetry run pytest --junitxml=test-reports/pytest/results.xml --cov=openapi_python_client tests
47
+ command : |
48
+ poetry run pytest --junitxml=test-reports/pytest/results.xml --cov=openapi_python_client tests
49
+ poetry run coverage xml
50
+
51
+ - codecov/upload :
52
+ file : coverage.xml
48
53
49
54
- run :
50
55
name : End to End Test
51
- command : poetry run pytest end_to_end_tests
56
+ command : |
57
+ poetry run pytest --junitxml=test-reports/pytest/results.xml --cov=openapi_python_client end_to_end_tests
58
+ poetry run coverage xml
52
59
53
- - run :
54
- name : Generate Coverage Report
55
- command : poetry run coverage xml
60
+ - codecov/upload :
61
+ file : coverage.xml
56
62
57
63
- store_test_results :
58
64
path : test-reports
59
- - codecov/upload :
60
- file : coverage.xml
65
+
61
66
- run :
62
67
command : poetry run pip uninstall openapi-python-client -y
63
68
name : Uninstall Package
You can’t perform that action at this time.
0 commit comments