Files
pipenv/.travis.yml
T
kennethreitz b62fec32c3 take that, travis
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-09-14 16:55:48 -04:00

26 lines
460 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"
# - "3.7-dev"
# - "pypy"
# - "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 tests"
# command to run tests
# jobs:
# include:
# - stage: "✨ Flake8 NitPicking ✨"
# python: "3.6"
# script: "pipenv run flake8"