py-utils/Pipfile
Tiara Rodney 644beb8696
feat(testing): init pytest fixtures
current_test fixture allows to retrieve the current test context, that is
exposed through the shell environment
2025-06-20 21:47:17 +02:00

20 lines
394 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
setuptools-scm = "~=8.2.0"
build = "*"
pipenv = "*"
byteb4rb1e-utils = { editable = true, path = '.'}
tox = "*"
[requires]
python_version = "3.11"
[scripts]
"build" = "python3 -m build"
"test-static" = "tox run -m static"
"test-unit" = "tox run -m unit"
"test-integration" = "tox run -m integration"