Run your Python script, in every version of Maya.
The goal of this project is comparing the response of a single Python script in all current versions of Maya.
- Edit
run.py
- See results here
I want to know whether, in each version of Maya..
- Is this workaround consistent?
- Does this bug occur?
- What is the result of
cmds.about(version=True)
? - ...
Use the nose testing framework for a more complete test coverage.
def test_case1():
assert True
def test_case2():
assert False
- Edit
.travis.yml
- Replace
mottosso/maya:${VERSION} run.py
withmottosso/maya:${VERSION} -m nose.__main__ --verbose run.py
Running the test in every version of Maya takes >30 mins. You can iterate faster by removing versions you aren't interested in.
matrix:
include:
# - env:
# - VERSION=2013sp1
# - env:
# - VERSION=2013sp2
- env:
- VERSION=2014sp1
- env:
- VERSION=2014sp2
- Edit
.travis.yml
- Remove versions