You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
434 B
9 lines
434 B
#!/bin/bash
|
|
|
|
python -m pytest pyfakefs/pytest_tests/pytest_plugin_test.py
|
|
if [[ $PY_VERSION == '3.6' ]] || [[ $PY_VERSION == '3.7' ]] || [[ $PY_VERSION == '3.8' ]] || [[ $PY_VERSION == '3.9' ]] ; then
|
|
python -m pytest pyfakefs/pytest_tests/pytest_fixture_test.py
|
|
fi
|
|
python -m pytest pyfakefs/pytest_tests/pytest_plugin_failing_helper.py > ./testresult.txt
|
|
python -m pytest pyfakefs/pytest_tests/pytest_check_failed_plugin_test.py
|