We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nedbat
Learn more about funding links in repositories.
Report abuse
1 parent f108ea2 commit cf3602fCopy full SHA for cf3602f
tests/test_process.py
@@ -8,6 +8,7 @@
8
import glob
9
import os
10
import os.path
11
+import platform
12
import re
13
import stat
14
import sys
@@ -837,6 +838,12 @@ def test_coverage_custom_script(self) -> None:
837
838
assert "hello-xyzzy" in out
839
840
@pytest.mark.skipif(env.WINDOWS, reason="Windows can't make symlinks")
841
+ @pytest.mark.skipif(
842
+ platform.python_version().endswith("+"),
843
+ reason="setuptools barfs on dev versions: https://github.com/pypa/packaging/issues/678"
844
+ # https://github.com/nedbat/coveragepy/issues/1556
845
+ # TODO: get rid of pkg_resources
846
+ )
847
def test_bug_862(self) -> None:
848
# This simulates how pyenv and pyenv-virtualenv end up creating the
849
# coverage executable.
0 commit comments