Skip to content

Commit

Permalink
Poetry runs tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AnotherSamWilson committed Jul 27, 2024
1 parent 7eec3a6 commit fd6432a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ jobs:
run: poetry install --no-interaction --with dev

- name: MyPy Checks
run: mypy miceforest --ignore-missing-imports
run: poetry run mypy miceforest --ignore-missing-imports

- name: Black Formatting - Package
run: black miceforest --check
run: poetry run black miceforest --check

- name: Black Formatting - Tests
run: black tests --check
run: poetry run black tests --check

- name: Isort Checks
run: isort miceforest --diff
run: poetry run isort miceforest --diff

- name: Pytest
run: poetry run pytest --cov=miceforest --cov-report html
Expand Down

0 comments on commit fd6432a

Please sign in to comment.