Open woutor opened 6 months ago
yeah this would be nice. One of the things I'm planning is a far more advanced arg parsing logic leveraging the work I'm doing with usage. No idea when I'll have time to finish that but this would be a good addition.
This would be very useful.
I'd like to be able to pass arbitrary arguments to a task, similar to spread arguments in just
:
test *args:
uv run pytest {{args}}
It could look something like this:
[tasks.test]
run = "uv run pytest {{args}}"
Hi,
I have migrated my noxfile to mise and everything works fine except for one case:
I'd like to adjust my task's run command based on parameters like env vars or arguments. For example, locally I like my linter to fix errors, while in CI it should fail.
For now I have a .mise.toml file like:
However, I would like to have something like:
I understand tasks are still experimental, so thanks for considering this anyway.