* authentik sessions created successfully during setup without breaking tracing * setup works on EN and DE localization by using regex patterns * automated tracing with pytest --trace option, manual hook no longer needed Reviewed-on: local-it-infrastructure/e2e_tests#2 Co-authored-by: Daniel <d.brummerloh@gmail.com> Co-committed-by: Daniel <d.brummerloh@gmail.com>
22 lines
No EOL
349 B
TOML
22 lines
No EOL
349 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_files = "test_*.py setup*.py" |