Skip to content

Commit

Permalink
No issue. Fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
reckart committed Mar 19, 2024
1 parent 9acba6f commit d75dab6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ dependencies:

# Tests
unit-tests:
poetry run py.test --cov=pycaprio --cov-branch --cov-fail-under=90 tests/unit_tests
poetry run py.test --cov=inception --cov-branch --cov-fail-under=90 tests/unit_tests

integ-tests:
poetry run py.test --cov=pycaprio --cov-branch --cov-fail-under=90 tests/integ_tests
poetry run py.test --cov=inception --cov-branch --cov-fail-under=90 tests/integ_tests

tests: unit-tests integ-tests

coverage:
poetry run py.test --cov=pycaprio --cov-branch --cov-fail-under=90 --cov-report=xml:coverage.xml tests
poetry run py.test --cov=inception --cov-branch --cov-fail-under=90 --cov-report=xml:coverage.xml tests

# Static analysis/linting
lint:
poetry run flake8 pycaprio --max-line-length=120
poetry run flake8 tests --max-line-length=120 --ignore=E722
poetry run flake8 inception --max-line-length=120
# poetry run flake8 tests --max-line-length=120 --ignore=E722

# Docs
docs:
Expand Down
2 changes: 1 addition & 1 deletion inception/commands/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .project import export_projects
from .project import export_projects # noqa

0 comments on commit d75dab6

Please sign in to comment.