diff options
-rw-r--r-- | tox.ini | 13 |
1 files changed, 1 insertions, 12 deletions
@@ -1,7 +1,7 @@ [tox] skip_missing_interpreters=true envlist = - py{36,37,38,39,310,py3},mypy-test,pyparsing_packaging + py{36,37,38,39,310,py3},mypy-test isolated_build = True [testenv] @@ -15,14 +15,3 @@ deps = mypy==0.960 # note: cd to tests/ to avoid mypy trying to check pyparsing (which fails) changedir = tests commands = mypy --show-error-codes --warn-unused-ignores mypy-ignore-cases/ - -[testenv:pyparsing_packaging] -basepython=py37 -deps= - pretend - pytest -commands= - python -c "import shutil,os,stat;os.path.exists('packaging') and shutil.rmtree('packaging', onerror=lambda fn, path, _:os.chmod(path,stat.S_IWRITE) or fn(path))" - git clone --depth 10 https://github.com/pypa/packaging.git - python -m pytest packaging/tests - python -c "import shutil,os,stat;shutil.rmtree('packaging', onerror=lambda fn, path, _:os.chmod(path,stat.S_IWRITE) or fn(path))" |