Files
pipenv/.travis.yml
T
kennethreitz 5896b5aa1c don't test 3.7
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-09-27 19:19:05 -04:00

26 lines
493 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"
# - "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"