Currently, the PTB offers two nox sessions for running either the unit or the integration tests_ * `nox -s test:unit` * `nox -s test:integration` Implementation * Nox task [test:integration](https://github.com/exasol/python-toolbox/blob/main/exasol/toolbox/nox/_test.py#L83) runs `_integration_tests()` * which calls `_test_command(config.root / "test" / "integration", config, context)` * which returns `coverage … pytest … context["fwd-args"]` ### Details: Background & Context, References, Examples * See the link in private field IntRef for more details regarding the sample project [AAF](https://github.com/exasol/advanced-analytics-framework) * Besides the AAF also [ITDE](https://github.com/exasol/integration-test-docker-environment) and [NC](https://github.com/exasol/notebook-connector) have similar needs ### Proposals * Use pytest markers `@pytest.mark.xyz` to separate test cases * Add nox session `test:dir` expecting a directory as parameter ### Task(s) TBD