2
votes
0answers
24 views

Solving the confusion generated by too many ways to run unittest in python

I am trying to implement a full and clean way of testing python packages, one that would suit the folowing requirements: execute tests on clean machines without setting them up (virtualenv) gather ...
0
votes
0answers
28 views

Python tox error “plugin already registered”

I'm trying to run a test-suite with tox for some work I'm doing on the jedi autocomplete library and I'm getting the following: ValueError: Plugin already registered: ...
1
vote
1answer
104 views

How to I configure tox so it will run pytest coverage on a single environment instead of all?

I do have a complex tox.ini configuration with multiple environments for different versions of python. I would like to know how to tell tox to run coverage only on the default python interpretor. ...