Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yxjiang committed Jul 17, 2024
1 parent 5040fea commit 0613413
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
run: poetry install

- name: Run Flake8
run: poetry run flake8 mind_renderer/
run: poetry run flake8 mind_renderer/ --config=pyproject.toml

- name: Run isort
run: poetry run isort --check-only --diff .
run: poetry run isort --check-only --diff . --settings-path pyproject.toml

- name: Run Black
run: poetry run black --check --diff .
run: poetry run black --check --diff . --config pyproject.toml

- name: Run Pytest with coverage
run: poetry run pytest -vv --cov=mind_renderer --cov-report=xml
Expand Down

0 comments on commit 0613413

Please sign in to comment.