I'm trying to publish some code in relation to my TDD in Maya article. Before it's been a seamless part of the rest of ngSkinTools project, but as I'm finding that I need to repeat this setup in other Maya-related projects, this is my attempt to make it a reusable library.
-
Create your virtual environment
virtualenv venv source venv/bin/activate
-
Install this package:
pip install git+https://github.com/viktorasm/maya-tdd-toolkit.git
Specify in your Pipfile
:
[dev-packages]
pytest = "*"
mayatdd = {git = "https://github.com/viktorasm/maya-tdd-toolkit.git", ref = "master"}
Checkout maya-tdd-toolkit-sampleproject for an example.