- Notifications
You must be signed in to change notification settings - Fork294
Fix tox.ini to allow specifying pytest tests#323
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This doesn't affect travis, but it does make development iterations much faster. Another fix we can do in the tox file is to move the flake8 pass to a separate "environment" so that it runs once in a tox run and not once for every environment. Does that sound helpful? If so, I can make that change and tack it on to this one. |
This fixes tox.ini so that you can pass arguments to py.test.For example: tox -e py34-base html5lib/tests/test_serializer.pywill now only run the serializer tests. tox -e py34-base -- -vvwill run with super verbose mode and tons of data will go flying by in yourterminal.
This is super minor. It's just an ergonomic issue related to development. |
This fixes tox.ini so that you can pass arguments to py.test.
For example:
will now only run the serializer tests.
will run with super verbose mode and tons of data will go flying by in your
terminal.