File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,7 +116,3 @@ jobs:
116116 name : logs
117117 path : /tmp/*.log
118118 if-no-files-found : ignore
119-
120- - name : Submit coverage report
121- run : |
122- codecov --token=cf379ef9-76c2-4aa9-9bf5-5c01303222e0
Original file line number Diff line number Diff line change @@ -11,11 +11,7 @@ pylint:
1111
1212.PHONY : test
1313test :
14- python -m coverage run --source tcms_api setup.py test
15-
16- .PHONY : test-codecov
17- test-codecov : test
18- codecov
14+ pytest --ignore=tests/krb5/ tests/
1915
2016.PHONY : build
2117build :
@@ -44,11 +40,11 @@ run-services:
4440
4541.PHONY : verify-integration
4642verify-integration :
47- PYTHONPATH=. python -m coverage run --source tcms_api ./tests/krb5/integration_test.py
43+ pytest -v ./tests/krb5/integration_test.py
4844
4945.PHONY : verify-credentials-via-python
5046verify-credentials-via-python :
51- PYTHONPATH=. python -m coverage run --source tcms_api ./tests/krb5/python_credentials_test.py
47+ pytest -v ./tests/krb5/python_credentials_test.py
5248
5349.PHONY : verify-curl-with-kerberos
5450verify-curl-with-kerberos :
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ environment:
99 matrix :
1010 - MAKE : flake8
1111 - MAKE : pylint
12- - MAKE : test-codecov
12+ - MAKE : test
1313 - MAKE : build
1414
1515install :
Original file line number Diff line number Diff line change 11-r requirements.txt
22
33build
4- codecov
54flake8
65pylint
6+ pytest
77twine
You can’t perform that action at this time.
0 commit comments