Skip to content

Commit 6d978e6

Browse files
committed
ci: πŸ’š Fix wf
1 parent c5a4ada commit 6d978e6

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

β€Ž.github/workflows/regression.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
run: poetry install --no-interaction --no-root
2828

2929
- name: 'Run regression runner'
30-
run: poetry run ./tests/regression.py
30+
run: poetry run poe regression

β€Žpyproject.tomlβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ addopts = "--tb=short"
2727
help = "Create a binary executable using pyinstaller"
2828
cmd = "pyinstaller --workpath .build --specpath dist -n codelimit codelimit/__main__.py"
2929

30+
[tool.poe.tasks.regression]
31+
help = "Regression test runner"
32+
cmd = "python tests/regression.py"
33+
3034
[tool.mypy]
3135
ignore_missing_imports = true
3236

0 commit comments

Comments
Β (0)