Skip to content

Commit

Permalink
Chore: Improve sandbox task naming
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Aug 3, 2023
1 parent 4866af8 commit 1757586
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Check code style
if: matrix.python-version != '3.6'
run: |
poe check-style
poe lint
- name: Run tests
run: |
Expand Down
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,17 @@ line-length = 120
# ===================

[tool.poe.tasks]

check = [
"lint",
"test",
]

format = [
{cmd="black ."},
{cmd="isort pytest_mqtt testing"},
]
check-style = [
lint = [
{cmd="ruff ."},
{cmd="black --check ."},
{cmd="isort --check pytest_mqtt testing"},
Expand Down

0 comments on commit 1757586

Please sign in to comment.