e2e_tests/pyproject.toml
Daniel 4c5a470a70 refactor so that coordinator instance is available in runner instance (#8)
-> all program states available

Reviewed-on: local-it-infrastructure/e2e_tests#8
Co-authored-by: Daniel <d.brummerloh@gmail.com>
Co-committed-by: Daniel <d.brummerloh@gmail.com>
2023-12-06 12:05:13 +01:00

24 lines
No EOL
411 B
TOML

[project]
name = "abratest"
version = "0.2.0"
requires-python = "~=3.11"
dependencies = [
"pytest == 7.4.3",
]
[project.optional-dependencies]
dev = [
"ruff >= 0.1.7",
]
[tool.setuptools]
package-dir = {"" = "abratest"}
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.pytest.ini_options]
python_functions = "test_* setup_*"
norecursedirs = ".* previous-work recipes"
testpaths = "tests"