I have the following tox.ini configuration file: I have update my requirements.txt file in order to upgrade the version of Marshmallow from 3.0.0b14 to 3.10.0; like this: Now my problem is that, when I run tox -e py37 everything works fine, but when I run this command tox -e py27, it fails. I get that the issue is that Marshmallow
Tag: tox
Copy and install packages within tox and set environment variables like you would in a Dockerfile
In my Dockerfile I have this: Can I do the same in tox? I know you can run commands by specifying in tox.ini as follows: But I just don’t know if all the commands that would work in a Dockerfile would work in tox as well. Answer So I’ve tried it and it worked. To try implement the above, this
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 tox. I’m already completely sure that other tests are fine, I don’t need them being run every time. The only suggestion I’ve found doesn’t work with Answer As written by jason meridth: But the fine grain is mentioned by beluga.me