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 6c67349 commit 4c96196Copy full SHA for 4c96196
noxfile.py
@@ -12,6 +12,7 @@
12
13
import argparse
14
import os
15
+import platform
16
import shutil
17
from typing import TYPE_CHECKING
18
@@ -82,6 +83,9 @@ def tests(session: nox.Session) -> None:
82
83
@nox.session(reuse_venv=True, venv_backend="uv", python=PYTHON_ALL_VERSIONS)
84
def minimums(session: nox.Session) -> None:
85
"""Test the minimum versions of dependencies."""
86
+ if platform.system() == "Windows":
87
+ session.log("Skipping minimums session on Windows due to slowness.")
88
+ return # Skip running tests entirely
89
_run_tests(
90
session,
91
install_args=["--resolution=lowest-direct"],
0 commit comments