Skip to content

Commit dda0421

Browse files
committed
Disable parallel execution for now
Signed-off-by: Samet Akcay <[email protected]>
1 parent 4635158 commit dda0421

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/pytest/action.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ runs:
130130
start_time=$(date +%s)
131131
132132
# Run pytest with:
133-
# - Auto parallel execution (-n auto)
133+
# - Disable parallel execution for now (-n0 instead of -n auto)
134134
# - Duration reporting for slow tests
135135
# - Configurable timeout
136136
# - JSON report generation
137137
PYTHONPATH=src pytest ${{ steps.test-scope.outputs.path }} \
138-
-n auto \
138+
-n0 \
139139
--durations=10 \
140-
--durations-min=1.0 \
140+
--durations-min=10.0 \
141141
--timeout=${{ inputs.max-test-time }} \
142142
--json-report --json-report-file=pytest.json \
143143
&& echo "success=true" >> $GITHUB_OUTPUT \

0 commit comments

Comments
 (0)