We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e090a7 commit 9eb39b0Copy full SHA for 9eb39b0
1 file changed
tests/test_pep517.py
@@ -21,6 +21,9 @@
21
@pytest.mark.parametrize('system_patchelf', ['patchelf', None], ids=['patchelf', 'nopatchelf'])
22
@pytest.mark.parametrize('ninja', [None, '1.8.1', '1.8.3'], ids=['noninja', 'oldninja', 'newninja'])
23
def test_get_requires_for_build_wheel(monkeypatch, package, system_patchelf, ninja):
24
+ # the NINJA environment variable affects the ninja executable lookup and breaks the test
25
+ monkeypatch.delenv('NINJA', raising=False)
26
+
27
def which(prog: str) -> bool:
28
if prog == 'patchelf':
29
return system_patchelf
0 commit comments