pyblish / pyblish-qml

Pyblish QML frontend for Maya 2013+, Houdini 11+, Nuke 8+ and more
GNU Lesser General Public License v3.0
114 stars 44 forks source link

Mistake in testing with Python 2. #256

Closed tokejepsen closed 7 years ago

mottosso commented 7 years ago

Mistake? nose is the executable for Python 2, nose3 or nosetests3 is for Python 3

tokejepsen commented 7 years ago

nose does not seem to be available when pip install nose with Python 2?

mottosso commented 7 years ago

Ah, sorry. It should be nosetests!

Then indeed it is a mistake. The approach you've taken here is ok too, but in that case maybe can remove the separation between Python's, and just say python -m for both, and let the user choose which python to call?

tokejepsen commented 7 years ago

The approach you've taken here is ok too, but in that case maybe can remove the separation between Python's, and just say python -m for both, and let the user choose which python to call?

You just this for both Python 2 and Python 3?

python -m nose --verbose --with-doctest --exe --exclude=vendor
mottosso commented 7 years ago

You just this for both Python 2 and Python 3?

Yeap