You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`poe test`| Run integration tests with coverage |`PYTHONPATH=src poetry run pytest -vv --import-mode=importlib --cov=src/package_name --cov-fail-under=90 --cov=src/package_name --cov-branch --cov-report term-missing:skip-covered tests/unit tests/integration`|
51
-
|`poe test-all`| Run all tests (without coverage) |`PYTHONPATH=src pytest -vv --import-mode=importlib tests`|
50
+
|`poe test`| Run application test suites that support coverage|`PYTHONPATH=src poetry run pytest -vv --import-mode=importlib --cov=src/package_name --cov-fail-under=90 --cov=src/package_name --cov-branch --cov-report term-missing:skip-covered tests/unit tests/integration`|
51
+
|`poe test-all`| Run all tests (without coverage) |`PYTHONPATH=src pytest -vv --import-mode=importlib`|
52
52
|`poe test-e2e`| Run e2e tests only |`PYTHONPATH=src poetry run pytest -vv --import-mode=importlib tests/e2e`|
53
53
|`poe test-integration`| Run integration tests only (with coverage) |`PYTHONPATH=src poetry run pytest -vv --import-mode=importlib --cov=src/package_name --cov-fail-under=90 --cov=src/package_name --cov-branch --cov-report term-missing:skip-covered tests/integration`|
54
-
|`poe test-unit`| Run unit tests only (with coverage) |`PYTHONPATH=src poetry run pytest -vv --import-mode=importlib --cov=src/package_name --cov-fail-under=90 --cov=src/package_name --cov-branch --cov-report term-missing:skip-covered tests/unit`|
54
+
|`poe test-unit`| Run unit tests only (without coverage) |`PYTHONPATH=src poetry run pytest -vv --import-mode=importlib tests/unit`|
55
55
|`poe check`| Run all formatting and linting tools against codebase |`poetry run black --check --line-length 100 . && npx --yes prettier@3.0.3 . --no-config --check && poetry run pylint src tests`|
56
56
|`poe format`| Run all formatting tools against codebase |`poetry run black --check --line-length 100 . && npx --yes prettier@3.0.3 . --no-config --check`|
57
57
|`poe format-black`| Run black against Python source code |`poetry run black --check --line-length 100 .`|
@@ -70,7 +70,7 @@ Running `pytest` with no arguments will:
70
70
- Override pytest's historical default import mode to `importlib` which is recommended for new projects (`--import-mode=importlib`)
71
71
- Run all available test items in [`./tests/`](./tests)
72
72
73
-
Tests are grouped by categories into different paths:
73
+
Tests are grouped into suites using different path names:
0 commit comments