Skip to content

Commit 296b7ba

Browse files
committed
fix
1 parent 09ea9f8 commit 296b7ba

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
- name: Install dependencies
3434
run: |
3535
uv pip install --system -e ".[test]"
36-
uv pip install --system ruff
3736
3837
- name: Run linting with ruff
3938
run: |

pyproject.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,13 @@ docs = [
5656
"sphinx-copybutton>=0.5",
5757
"myst-parser>=2.0",
5858
]
59-
60-
[dependency-groups]
59+
test = [
60+
"pytest>=7.0",
61+
"pytest-cov>=4.0",
62+
"pytest-mock>=3.10",
63+
"psutil>=5.9.0",
64+
"ruff>=0.7.0",
65+
]
6166
dev = [
6267
"pytest>=7.0",
6368
"pytest-cov>=4.0",
@@ -70,12 +75,6 @@ dev = [
7075
"pre-commit>=3.0",
7176
"psutil>=5.9.0",
7277
]
73-
test = [
74-
"pytest>=7.0",
75-
"pytest-cov>=4.0",
76-
"pytest-mock>=3.10",
77-
"psutil>=5.9.0",
78-
]
7978

8079
[project.urls]
8180
Homepage = "https://github.com/themains/piedomains"

0 commit comments

Comments
 (0)