Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure we constrain test dependencies with uv #446

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ setenv =
COVERAGE_PROCESS_START={toxinidir}/pyproject.toml
PIP_DISABLE_PIP_VERSION_CHECK = 1
PIP_CONSTRAINT = {toxinidir}/.config/constraints.txt
UV_CONSTRAINT = {toxinidir}/.config/constraints.txt
PRE_COMMIT_COLOR = always
FORCE_COLOR = 1
allowlist_externals =
Expand Down Expand Up @@ -108,6 +109,7 @@ passenv =
setenv =
{[testenv]setenv}
PIP_CONSTRAINT = /dev/null
UV_CONSTRAINT = /dev/null

[testenv:deps]
description = Bump all test dependencies
Expand All @@ -121,6 +123,7 @@ commands =
setenv =
{[testenv]setenv}
PIP_CONSTRAINT = /dev/null
UV_CONSTRAINT = /dev/null

[testenv:pkg]
description =
Expand Down Expand Up @@ -183,6 +186,7 @@ deps =
setenv =
{[testenv]setenv}
PIP_CONSTRAINT = /dev/null
UV_CONSTRAINT = /dev/null
PYTEST_REQPASS = 0
changedir = {envdir}/tmp/ansible-lint
allowlist_externals =
Expand Down
Loading