Skip to content

Commit c0f3f63

Browse files
committed
fix: don't override deps for test env
1 parent 20a4b64 commit c0f3f63

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
SKIP: nitpick
4747

4848
- name: Run tests
49-
run: hatch test --python ${{ matrix.python-version }} --cover --randomize --parallel --retries 2 --retry-delay 1
49+
run: hatch test --python ${{ matrix.python-version }} --cover --randomize --retries 2 --retry-delay 1

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ fix-pre-commit = ["hatch run python3 -m scripts.fix_pre_commit"]
5454
[tool.hatch.envs.hatch-test]
5555
default-args = ["tests", "irclib"]
5656
extra-args = ["-vv"]
57-
dependencies = [
57+
extra-dependencies = [
58+
"coverage[toml]>=6.5",
59+
"pytest>=6.0",
5860
"irc-parser-tests",
5961
]
6062

0 commit comments

Comments
 (0)