removing the python in front
ci-tests/python-test/pipeline/head There was a failure building this commit

This commit is contained in:
2022-03-01 15:41:53 +02:00
parent 18f9b4abf5
commit 1ee3265472
Vendored
+4 -3
View File
@@ -33,11 +33,12 @@ pipeline {
}
steps {
sh '''
python -m venv ${PY_ENV}; source ${PY_ENV}/bin/activate
python -m venv ${PY_ENV}
source ${PY_ENV}/bin/activate
export PATH=${PY_ENV}/bin:${PATH}
pip install -r requirements.txt
python -m pytest catalog/tests/
python -m xmlrunner discover -p *_test.py
pytest catalog/tests/
xmlrunner discover -p *_test.py
'''
}
}