Skip to content

Commit 54b62f9

Browse files
committed
Explicitly specify --no-use-pep517 as that's our expectation in these tests
1 parent 2303caf commit 54b62f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/cffi0/test_zintegration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def remove(dir):
9898
# there's a setuptools/easy_install bug that causes this to fail when the build/install occur together and
9999
# we're in the same directory with the build (it tries to look up dependencies for itself on PyPI);
100100
# subsequent runs will succeed because this test doesn't properly clean up the build- use pip for now.
101-
subprocess.check_call((vp, '-m', 'pip', 'install', '.'), env=env)
101+
subprocess.check_call((vp, '-m', 'pip', 'install', '.', '--no-use-pep517'), env=env)
102102
subprocess.check_call((vp, str(python_f)), env=env)
103103
finally:
104104
os.chdir(olddir)

0 commit comments

Comments
 (0)