We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3454208 commit 574da35Copy full SHA for 574da35
noxfile.py
@@ -153,6 +153,12 @@ def tests(session):
153
install_command += [req.strip() for req in EXTRA_REQUIREMENTS_INSTALL.split()]
154
session.install(*install_command, silent=PIP_INSTALL_SILENT)
155
156
+ if IS_WINDOWS:
157
+ _python_version = python_version(session)
158
+ if _python_version > (3, 8) and _python_version < (3, 10):
159
+ # We skip a lot of tests, so lower the expected code coverage
160
+ COVERAGE_FAIL_UNDER_PERCENT = 50
161
+
162
session.run("coverage", "erase")
163
env.update(
164
{
0 commit comments