mirror of
https://github.com/kennethreitz/maya.git
synced 2026-06-20 14:41:00 +00:00
23 lines
361 B
YAML
23 lines
361 B
YAML
language: python
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.6"
|
|
- "3.7-dev"
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- python: "3.7-dev"
|
|
|
|
# command to install dependencies
|
|
install:
|
|
- pip install pipenv
|
|
- pipenv install '-e .' --skip-lock --ignore-pipfile
|
|
- pipenv install --dev --skip-lock
|
|
|
|
# command to run tests
|
|
script: pipenv run pytest tests/
|