You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this could be a useful feature! But IMO I'd like it to be optional and not the default. Maybe having a --timer flag or something would work, to ask Nox to report test duration?
This sounds useful! I'm reminded of pytest --durations n which lists the tests with the n longest durations. Using --durations as the flag would help for consistency with pytest (with n being optional). I don't see an equivalent flag in tox. 🤔
This sounds useful! I'm reminded of pytest --durations n which lists the tests with the n longest durations. Using --durations as the flag would help for consistency with pytest (with n being optional). I don't see an equivalent flag in tox. 🤔
Yup, tox shows duration by default. But many Nox users don't mind at all about these details, so in order to keep our simplicity approach, I'd recommend having an optional flag for this (the suggested --duration sounds nice) :)
How would this feature be useful?
This feature would be useful for tracking test execution time. It would help developers identify performance regressions and optimize their workflows.
Describe the solution you'd like
for example:
nox > Session fastapi_latest was successful (12.34 seconds).
nox > Ran multiple sessions:
nox > * fastapi_0096: success (9.34 seconds)
nox > * fastapi_0109: success (2.12 seconds)
nox > * fastapi_latest: success (0.88 seconds)
or
nox > Session fastapi_latest was successful.
nox > Ran multiple sessions:
nox > * fastapi_0096: success (9.34 seconds)
nox > * fastapi_0109: success (2.12 seconds)
nox > * fastapi_latest: success (0.88 seconds)
nox > Total 12.34 seconds
Describe alternatives you've considered
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: