File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1313 pip install -r requirements-tests.txt
1414 pip install -r requirements-dev.txt
1515 - name : Run tests and collect coverage
16- run : make tests
16+ run : make coverage- tests
1717 - name : Upload coverage reports to Codecov
1818 run : |
1919 # Replace `linux` below with the appropriate OS
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ tests:
1414 PYTHONPATH=$(CWD ) /src:$(CWD ) /tests/plugins1:$(CWD ) /tests/plugins2:${PYTHONPATH} \
1515 ${PYTHON} -m pytest -v $(TESTARGS )
1616
17+ .PHONY : coverage-tests
18+ coverage-tests :
19+ PYTHONPATH=$(CWD ) /src:$(CWD ) /tests/plugins1:$(CWD ) /tests/plugins2:${PYTHONPATH} \
20+ ${PYTHON} -m pytest -v --cov $(TESTARGS )
21+
1722.PHONY : verbose-tests
1823verbose-tests :
1924 PYTHONPATH=$(CWD ) /src:$(CWD ) /tests/plugins1:$(CWD ) /tests/plugins2:${PYTHONPATH} \
You can’t perform that action at this time.
0 commit comments