diff options
author | ptmcg <ptmcg@austin.rr.com> | 2022-12-11 13:01:16 -0600 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2022-12-11 13:01:16 -0600 |
commit | 76f4bf7b54068f77e31dc9cfb6e504d5dbdd1998 (patch) | |
tree | c3617307d355d24b36653abef5db1f7b3c60d550 | |
parent | bcaeea1fa924a66a5b13c67cd830621e4eff4214 (diff) | |
download | pyparsing-git-76f4bf7b54068f77e31dc9cfb6e504d5dbdd1998.tar.gz |
Remove packaging tests from pyparsing CI, packaging no longer uses pyparsing
-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))" |