Skip to content

Commit 232108d

Browse files
committed
fix: remove --dist=no flag from pytest commands (pytest-xdist not installed)
1 parent 5e66686 commit 232108d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: uv run radon cc src/ --min C
4646

4747
- name: Run tests
48-
run: uv run pytest --cov=src/taskfile_help --cov-report=xml --cov-report=term-missing --dist=no
48+
run: uv run pytest --cov=src/taskfile_help --cov-report=xml --cov-report=term-missing
4949

5050
- name: Upload coverage reports to Codecov
5151
if: matrix.python-version == '3.11'

scripts/ci-local.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ run_ci_step "Complexity Analysis" "uv run radon cc src/ --min C" || {
8080
}
8181

8282
# Run tests with same coverage settings as CI (sequential execution)
83-
run_ci_step "Tests with Coverage" "uv run pytest --cov=src/taskfile_help --cov-report=xml --cov-report=term-missing --dist=no" || {
83+
run_ci_step "Tests with Coverage" "uv run pytest --cov=src/taskfile_help --cov-report=xml --cov-report=term-missing" || {
8484
echo -e "${RED}💡 Check test failures above${NC}"
8585
exit 1
8686
}

0 commit comments

Comments
 (0)