Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion run_tests3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ rm -rf $VENV_PATH
python -m venv "${VENV_PATH}"
export VIRTUAL_ENV_DISABLE_PROMPT=1
source "${VENV_PATH}/bin/activate"
pip install pytest pytest-xdist
pip install flake8 pytest pytest-xdist

# Codestyle is checked
flake8

# Functional is tested
python -m pytest -l -v -n 4

set +eux