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 3c53389 commit b2a5680Copy full SHA for b2a5680
noxfile.py
@@ -2,6 +2,7 @@
2
3
import json
4
import os
5
+import platform
6
import re
7
from pathlib import Path
8
@@ -92,6 +93,13 @@ def tests(session, django):
92
93
session.install(f"django=={django}")
94
95
command = ["cargo", "test"]
96
+
97
+ # TODO: Remove this exclusion once PyO3 is replaced with subprocess oracle pattern
98
+ # Temporarily exclude djls-project tests on Windows due to PyO3 DLL loading issues
99
+ # (STATUS_DLL_NOT_FOUND when the test executable tries to load Python)
100
+ if platform.system() == "Windows":
101
+ command.extend(["--workspace", "--exclude", "djls-project"])
102
103
if session.posargs:
104
args = []
105
for arg in session.posargs:
0 commit comments