mirror of
https://github.com/kennethreitz/maya.git
synced 2026-06-21 15:10:57 +00:00
ef52cb4b7d
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.
10 lines
192 B
YAML
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
|