more cleaning

This commit is contained in:
Mathieu Dupuy
2023-10-11 13:28:39 +02:00
parent c1062f2230
commit f7ae8f10a8
2 changed files with 1 additions and 9 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ export PIPENV_CACHE_DIR=`mktemp -d 2>/dev/null || mktemp -d -t 'pipenv_cache'`
# on some Linux OS python is python3
PYTHON=${PYTHON:-"python"}
PIPENV_PYTHON="${PIPENV_PYTHON:-3.7}"
PIPENV_PYTHON="${PIPENV_PYTHON:-3.8}"
PIP_CALL="${PIP_CALL:-${PYTHON} -m pip install --user}"
-8
View File
@@ -104,14 +104,6 @@ def pytest_runtest_setup(item):
pytest.skip('test not applicable on python 3.8')
if item.get_closest_marker('skip_osx') is not None and sys.platform == 'darwin':
pytest.skip('test does not apply on OSX')
if item.get_closest_marker('lte_py36') is not None and (
sys.version_info >= (3, 7)
):
pytest.skip('test only runs on python < 3.7')
if item.get_closest_marker('skip_py36') is not None and (
sys.version_info[:2] == (3, 6)
):
pytest.skip('test is skipped on python 3.6')
if item.get_closest_marker('skip_windows') is not None and (os.name == 'nt'):
pytest.skip('test does not run on windows')