We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a4ada commit 6d978e6Copy full SHA for 6d978e6
β.github/workflows/regression.ymlβ
@@ -27,4 +27,4 @@ jobs:
27
run: poetry install --no-interaction --no-root
28
29
- name: 'Run regression runner'
30
- run: poetry run ./tests/regression.py
+ run: poetry run poe regression
βpyproject.tomlβ
@@ -27,6 +27,10 @@ addopts = "--tb=short"
help = "Create a binary executable using pyinstaller"
cmd = "pyinstaller --workpath .build --specpath dist -n codelimit codelimit/__main__.py"
+[tool.poe.tasks.regression]
31
+help = "Regression test runner"
32
+cmd = "python tests/regression.py"
33
+
34
[tool.mypy]
35
ignore_missing_imports = true
36
0 commit comments