We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
uv_sync_flags
I tested passing groups to uv_sync_flags with this configuration (with the new tox 4.21 native toml configuration support), as suggested in #113, but without success at the moment:
[tool.tox.env.doc] runner = "uv-venv-lock-runner" uv_sync_flags = ["--group=doc"] commands = [ ["sphinx-build", "--builder", "html", "doc", "build/sphinx/html"], ["sphinx-build", "--builder", "man", "doc", "build/sphinx/html"], ]
It fails with TypeError: '--group=doc' is not list.
TypeError: '--group=doc' is not list
When passing a simple string like uv_sync_flags = "--group=doc" it also fails with the same error message.
uv_sync_flags = "--group=doc"
Originally posted by @azmeuk in #114 (comment)
The text was updated successfully, but these errors were encountered:
https://github.com/tox-dev/tox-uv/releases/tag/1.16.0 also now have support for dedicated field https://github.com/tox-dev/tox-uv#dependency_groups to be more unified with upstream tox
Sorry, something went wrong.
Thank you for the quick fix!
Successfully merging a pull request may close this issue.
I tested passing groups to
uv_sync_flags
with this configuration (with the new tox 4.21 native toml configuration support), as suggested in #113, but without success at the moment:It fails with
TypeError: '--group=doc' is not list
.When passing a simple string like
uv_sync_flags = "--group=doc"
it also fails with the same error message.Originally posted by @azmeuk in #114 (comment)
The text was updated successfully, but these errors were encountered: