mirror of
https://gitlab.com/MisterBiggs/testing-framework-comparison.git
synced 2025-06-15 08:56:40 +00:00
22 lines
396 B
TOML
22 lines
396 B
TOML
[project]
|
|
name = "testing-frameworks"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pytest>=8.3.5",
|
|
"requests>=2.32.3",
|
|
"robotframework>=7.2.2",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["pytest"]
|
|
python_files = "test_*.py"
|
|
python_functions = "test_*"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.11.10",
|
|
]
|