Files
maya/.travis.yml
Christian Sauer ef52cb4b7d Regenerate lock file for 3.6
Maya uses `ruamel.yaml` which needs `ruamel.ordereddict` under 2.7 but does not under 3.x.  `ruamel.ordereddict` doesn't build under 3.x.  Maya's Pipfile.lock file was created under 2.7 so `ruamel.ordereddict` is listed as a dependency.
2017-05-25 11:56:25 -04:00

10 lines
192 B
YAML

language: python
python:
- "2.7"
- "3.6"
# command to install dependencies
install: pip install pipenv; pipenv lock; pipenv install --dev
# command to run tests
script: pipenv run pytest