We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e6fbe8 commit 45071c8Copy full SHA for 45071c8
2 files changed
.github/workflows/ci.yml
@@ -26,7 +26,7 @@ jobs:
26
- name: Install project
27
run: |
28
python -m pip install --upgrade pip
29
- pip install -e .
+ pip install -e .[dev]
30
31
- name: Run tests
32
run: python -m pytest -q
pyproject.toml
@@ -34,6 +34,11 @@ Issues = "https://github.com/Poryaei/pine-script-validator/issues"
34
pine-validator = "pinescript_validator.cli:main"
35
pine-validator-audit = "pinescript_validator.audit:main"
36
37
+[project.optional-dependencies]
38
+dev = [
39
+ "pytest>=8.0",
40
+]
41
+
42
[tool.setuptools]
43
package-dir = {"" = "src"}
44
0 commit comments