Files
pipenv/.travis.yml
T
2017-09-28 22:12:53 -04:00

26 lines
519 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# - "pypy" # too many cache issues
# - "3.7-dev" # no need, slows down builds
# - "pypy3" # TODO: pkg_config issues
# command to install dependencies
install:
- "pip install -e . --upgrade"
- "pipenv install --dev"
# command to run the dependencies
script:
- "pipenv run pytest -n 8 tests"
# command to run tests
# jobs:
# include:
# - stage: "✨ Flake8 NitPicking ✨"
# python: "3.6"
# script: "pipenv run flake8"