From d75dab6558435458ca57d6bc7ab038de992bfc85 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 19 Mar 2024 17:01:39 +0100 Subject: [PATCH] No issue. Fix names --- Makefile | 10 +++++----- inception/commands/__init__.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 0180010..8c99fe3 100644 --- a/Makefile +++ b/Makefile @@ -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: diff --git a/inception/commands/__init__.py b/inception/commands/__init__.py index 91d382a..e298fdf 100644 --- a/inception/commands/__init__.py +++ b/inception/commands/__init__.py @@ -1 +1 @@ -from .project import export_projects +from .project import export_projects # noqa