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 3ca087e commit 0cab71bCopy full SHA for 0cab71b
.github/workflows/shared.yml
@@ -103,14 +103,15 @@ jobs:
103
find .venv -name "__pycache__" -type d -delete 2>/dev/null || true
104
105
# Run pytest directly from venv to avoid any uv resolution issues
106
+ # Disable xdist for lowest-direct to avoid subprocess issues
107
# Isolate the Python environment completely
108
export PYTHONNOUSERSITE=1
109
export PYTHONPATH=""
110
export PYTHONDONTWRITEBYTECODE=1
111
if [ "$RUNNER_OS" == "Windows" ]; then
- .venv/Scripts/python -m pytest -v
112
+ .venv/Scripts/python -m pytest -n 0
113
else
- .venv/bin/python -m pytest -v
114
+ .venv/bin/python -m pytest -n 0
115
fi
116
117
uv run --frozen --no-sync pytest
0 commit comments