We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f197d3a + 764d884 commit 9e05fc1Copy full SHA for 9e05fc1
.github/workflows/ci.yml
@@ -42,7 +42,7 @@ jobs:
42
- "src/pip/_vendor/**"
43
- "pyproject.toml"
44
tests:
45
- # Anything that's touching testable stuff
+ # Anything that's touching code-related stuff
46
- ".github/workflows/ci.yml"
47
- "src/**"
48
- "tests/**"
noxfile.py
@@ -110,7 +110,14 @@ def test(session: nox.Session) -> None:
110
# Run the tests
111
# LC_CTYPE is set to get UTF-8 output inside of the subprocesses that our
112
# tests use.
113
- session.run("pytest", *arguments, env={"LC_CTYPE": "en_US.UTF-8"})
+ session.run(
114
+ "pytest",
115
+ *arguments,
116
+ env={
117
+ "LC_CTYPE": "en_US.UTF-8",
118
+ "SETUPTOOLS_USE_DISTUTILS": "stdlib",
119
+ },
120
+ )
121
122
123
@nox.session
0 commit comments