-
-
Notifications
You must be signed in to change notification settings - Fork 531
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
Improve --notest documentation #829
Comments
He @webknjaz, thanks for the suggestion. If I understand you correctly you are looking for the sadly underdocumented |
oh.. looks like it. I'll tell more once get to testing it. thanks :) |
I myself don't entirely understand the use case. Let us know what you have a full example of what you're trying to achieve. |
install: tox --notest # installs deps
script: tox # runs tests This is what I wanted and the suggestion works for me |
How would this manifest differently on Travis as opposed to not having the install phase? Is it purely for caching purposes? |
It's (1) separate in log and (2) produces different type of build error on |
When running tox in CI there's often job step separation and failures in different kinds of stages are accounted differently. For example, in Travis CI its error/failure depending on whether the command is failing in install of script step.
I'd like to see smth like
--skip-command
flag or smth like it for pre-populating env (installing deps), which I'd run in theinstall
stage, and then I'd run normal tests, for which tox would reuse env created earlier.This would help separate different logical steps of doing automatic testing in CI.
The text was updated successfully, but these errors were encountered: