We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1beed9a commit 229913eCopy full SHA for 229913e
misc/build_wheel.py
@@ -83,6 +83,8 @@ def create_environ(python_version: str) -> Dict[str, str]:
83
&& pip install -r /tmp/test-requirements.txt
84
)
85
""".replace('\n', ' ')
86
+ # lxml currently has wheels on Windows and doesn't have grep, so special case
87
+ env['CIBW_BEFORE_TEST_WINDOWS'] = "pip install -r {project}/mypy/test-requirements.txt"
88
89
# pytest looks for configuration files in the parent directories of where the tests live.
90
# since we are trying to run the tests from their installed location, we copy those into
0 commit comments