Files
pipenv/.travis.yml
T
kennethreitz 03389a5af0 try this
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-09-01 20:50:12 -04:00

20 lines
447 B
YAML

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 --skip-lock"
# command to run tests
script:
# flake8 has dropped support for Python 2.6.
# - if [[ "$TRAVIS_PYTHON_VERSION" != "2.6" ]]; then pipenv run flake8 --ignore=F821; fi
- pipenv run pytest tests