diff options
author | Christian Heimes <christian@python.org> | 2021-10-06 18:41:18 +0200 |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2021-10-06 18:44:10 +0200 |
commit | 6709a37812acf6be73d0f449b9c60ad7dc3aef55 (patch) | |
tree | c4c7e73ef0b885ef564d431a789659013fed5874 | |
parent | c78e531939d54606804208528238619f12f4220a (diff) | |
download | defusedxml-git-py310.tar.gz |
Latest coverage interfers with testspy310
Drop coverage, it's not use at the moment.
-rw-r--r-- | .github/workflows/main.yml | 7 | ||||
-rw-r--r-- | tox.ini | 14 |
2 files changed, 7 insertions, 14 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 93ab2c8..1791bb8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,10 +32,7 @@ jobs: - name: "Update pip" run: python -m pip install --upgrade pip setuptools wheel - name: "Install tox dependencies" - run: python -m pip install --upgrade tox tox-gh-actions coverage[toml] + run: python -m pip install --upgrade tox tox-gh-actions - name: "Run tox for ${{ matrix.python-version }}" run: "python -m tox" - - name: "Upload coverage to Codecov" - uses: "codecov/codecov-action@v1" - with: - fail_ci_if_error: true + @@ -4,17 +4,13 @@ skip_missing_interpreters = true [testenv] commands = - coverage run --parallel-mode tests.py - coverage combine - coverage xml - coverage report -m + {envpython} {toxinidir}/tests.py deps = lxml - coverage [testenv:py38] # lxml FTBFS because Python sets -Wimplicit-int -deps = coverage +deps = [testenv:black] commands = black --check --verbose \ @@ -51,6 +47,6 @@ max-line-length = 98 python = 3.6: py36 3.7: py37 - 3.8: py38, pep8py3, doc - 3.9: py39, black - 3.10: py310 + 3.8: py38, pep8py3 + 3.9: py39, doc + 3.10: py310, black |