Closed voetsjoeba closed 8 years ago
I can't reproduce the bug, neither on Python 2.7.12 nor 3.5.1. I'll commit the patch anyway, as it doesn't cause any regression.
Might depend on your system's default shell and how it interprets extra arguments. subprocess.call(["mvn", "test"], shell=True) invokes /bin/sh -c mvn test, in which the extra "test" argument gets ignored.
Trying to simply run the test cases, I ran "tox" in the project root folder and got this output:
Looks like this happens because
tests/tests.py
invokes maven this way:instead of
Switching to the latter works.