File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -232,3 +232,5 @@ gradle-app.setting
232232.vscode /settings.json
233233
234234.idea /
235+
236+ tests /allure_report
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ unit-tests:
4242 pip install --no-cache-dir -r tests/python/unit/requirements.txt; \
4343 pip install --no-cache-dir -r code-env/python/spec/requirements.txt; \
4444 export PYTHONPATH=" $( PYTHONPATH) :$( PWD) /python-lib" ; \
45- pytest tests/python/unit --alluredir=tests/allure_report || ret=$$? ; exit $$ ret \
45+ python3 -m pytest tests/python/unit --alluredir=tests/allure_report || ret=$$? ; exit $$ ret \
4646 )
4747
4848integration-tests :
@@ -53,7 +53,7 @@ integration-tests:
5353 source env/bin/activate; \
5454 pip3 install --upgrade pip; \
5555 pip install --no-cache-dir -r tests/python/integration/requirements.txt; \
56- pytest tests/python/integration --alluredir=tests/allure_report || ret=$$? ; exit $$ ret \
56+ python3 -m pytest tests/python/integration --alluredir=tests/allure_report || ret=$$? ; exit $$ ret \
5757 )
5858
5959tests : unit-tests integration-tests
You can’t perform that action at this time.
0 commit comments