Top "Tox" questions

tox is a generic virtualenv management and test running tool.

How can tox install the modules via the requirements file?

Our python project has a requirements.txt file which lists some dependent module. We used to use pip install -r …

python tox
pip install test dependencies for tox from setup.py

I made my project with setuptools and I want to test it with tox. I listed dependencies in a variable …

python pip setuptools easy-install tox
How to run only one test in tox?

I'm trying to write a new test for a project and I'd like to test only that one test in …

python tox
How do I run tox in a project that has no setup.py?

I would like to use tox to run my unittests in two virtualenvs, since my application has to support 2 different …

python unit-testing distutils tox
How do you install pywin32 from a binary file in tox on Windows?

My application depends on pywin32 which I have installed in my system environment via Windows binary file. How do you …

python testing pywin32 tox
How to import all the environment variables in tox

I'm using following in setenv to import the environment variable from where I run, but is there a way to …

python virtualenv setenv tox
Making py.test, coverage and tox work together: __init__.py in tests folder?

I'm having a weird problem with tox, py.test, coverage and pytest-cov: when py.test with the --cov option is …

python code-coverage pytest coverage.py tox
Missing conf file for sphinx command

I am running into problem when I am running tox command to generate Sphinx documentation for my Python project. Here …

python python-sphinx tox
How to set the environment variable in tox?

I have tox 2.9.1 $ tox --version 2.9.1 imported from /Library/Python/2.7/site-packages/tox/__init__.pyc registered plugins: tox-pyenv-1.1.0 at /Library/Python/2.7/site-packages/…

python virtualenv tox setenv
flake8/pylint fails in Tox testing environment, raises InvocationError

I've been learning about how to do testing in tox for my python project. I have (what should be) a …

python testing tox flake8