CI/tests: use tox?
See original GitHub issueI think it is very useful to have a tox.ini
to run tests in an isolated way.
This would also allow for using tox-travis
on Travis then.
What is your opinion? I’d be happy to provide a PR for this.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:10 (10 by maintainers)
Top Results From Across the Web
Python tox - Why You Should Use It and Tutorial
In this detailed post I'm going to delve into why tox can save you time and pain, how it works, and then go...
Read more >tox
tox is a generic virtual environment management and test command line tool you can use for: checking your package builds and installs correctly...
Read more >tox Documentation - Read the Docs
tox is a generic virtualenv management and test command line tool you can use for: • checking your package installs correctly with different ......
Read more >tox 0.0.0 - PyPI
tox is a generic virtualenv management and test command line tool you can use for: checking your package installs correctly with different Python...
Read more >tox(1) — tox — Debian buster - Debian Manpages
The environment py uses the version of Python used to invoke tox. ... #446: (infrastructure) Travis CI tests for tox now also run...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I wish to limit the number of files and settings to the bare minimum. If it can fit into the
tox.ini
, it’s perfect.How would the integration of
flake8
looks like? This is very useful to improve overall code quality, on the other hand I don’t want the CI tests to fail because of styling issues.I was a little worried that adding
tox
would clutter the repository needlessly and badly integrate with Travis, but thanks totox-travis
this is not the case. Usingtox
is best practice anyway, so there is no reason not to use it.Thanks for the suggestion! A PR would be much appreciated when you have a little time, as you are surely more used to
tox
than I am. 🙂