We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc401b3 commit 1769c1fCopy full SHA for 1769c1f
azure-pipelines.yml
@@ -147,9 +147,14 @@ stages:
147
fi
148
echo "##vso[task.setvariable variable=VS_COVERAGE_TOOL]$TOOL"
149
150
+ if [[ $(python.version) == 3.11 ]]; then
151
+ # when removing this, also remove
152
+ # @pytest.mark.xdist_group(name="subprocess") from tests
153
+ DIST_LOAD_GROUP=--dist=loadgroup
154
+ fi
155
+ echo $DIST_LOAD_GROUP
156
PYTHONFAULTHANDLER=1 pytest -rfEsXR -n 2 \
- --maxfail=50 --timeout=300 --durations=25 \
- --dist=loadgroup \
157
+ --maxfail=50 --timeout=300 --durations=25 $DIST_LOAD_GROUP \
158
--junitxml=junit/test-results.xml --cov-report=xml --cov=lib
159
160
if [[ $VS_VER == 2022 ]]; then
0 commit comments