We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4682ba8 commit 09d738cCopy full SHA for 09d738c
.github/workflows/ci.yml
@@ -34,9 +34,11 @@ jobs:
34
35
- name: Download uv
36
uses: astral-sh/setup-uv@v6
37
-
+
38
+ - name: install dependenies
39
+ run: uv pip install --system .[test]
40
- name: Test package
- run: uv run pytest
41
+ run: pytest
42
43
44
pyproject.toml
@@ -39,6 +39,10 @@ dependencies = [
"lmfit"
]
+[project.optional-dependencies]
+test = [
+ "pytest"]
45
46
[tool.hatch.version]
47
source = "vcs"
48
0 commit comments