Skip to content

Commit 1b335a2

Browse files
committed
remove pytest-timeout.
1 parent c052aee commit 1b335a2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ install:
44

55
# Run tests
66
test *args="":
7-
uv run --group test pytest --cov=src --cov=tests --cov-report=xml --timeout=30 {{args}}
7+
uv run --group test pytest --cov=src --cov=tests --cov-report=xml {{args}}
88

99
# Run tests with lowest dependency resolution
1010
test-lowest *args="":
11-
uv run --group test --resolution lowest-direct pytest --timeout=30 {{args}}
11+
uv run --group test --resolution lowest-direct pytest {{args}}
1212

1313
# Run tests with highest dependency resolution
1414
test-highest *args="":
15-
uv run --group test --resolution highest pytest --timeout=30 {{args}}
15+
uv run --group test --resolution highest pytest {{args}}
1616

1717
# Run type checking
1818
typing:

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ test = [
4545
"nbmake",
4646
"pytest>=8.4.0",
4747
"pytest-cov>=5.0.0",
48-
"pytest-timeout>=2.4.0",
4948
{include-group = "coiled"},
5049
{include-group = "dask"},
5150
]

0 commit comments

Comments
 (0)