e2e_tests/pyproject.toml
Daniel d3dc0f942a new-features (#5)
* refactoring and rework: runner now has setups / tests / cleanups as lists
* add nextcloud runner
* add email testing prototype with imap fixture
* add dependency resolution (sort env files in input so that test order is correct)

Reviewed-on: local-it-infrastructure/e2e_tests#5
Co-authored-by: Daniel <d.brummerloh@gmail.com>
Co-committed-by: Daniel <d.brummerloh@gmail.com>
2023-12-04 12:46:30 +01:00

23 lines
No EOL
384 B
TOML

[project]
name = "locit-testing"
version = "0.1.0"
requires-python = "~=3.11"
dependencies = [
"pytest == 7.4.3",
]
[project.optional-dependencies]
dev = [
"ruff >= 0.1.3",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.pytest.ini_options]
python_functions = "test_* setup_*"
norecursedirs = "previous-work src"