We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d188d3 commit d0a714aCopy full SHA for d0a714a
.github/workflows/pytest.yml
@@ -23,9 +23,8 @@ jobs:
23
- name: Install dependencies
24
run: |
25
python -m pip install --upgrade pip
26
- python -m pip install build
27
- python -m build
28
- python -m pip install pytest
+ python -m pip install .
+ python -m pip install .[test]
29
- name: Test with pytest
30
31
pytest
pyproject.toml
@@ -34,3 +34,6 @@ classifiers = [
34
Homepage = "https://github.com/ray310/Panda-Helper"
35
Repository = "https://github.com/ray310/Panda-Helper"
36
Issues = "https://github.com/ray310/Panda-Helper/issues"
37
+
38
+[project.optional-dependencies]
39
+test = ["pytest>=7.4"]
0 commit comments