Files
pipenv/.travis.yml
T
kennethreitz 37ad70d7db skip-lock
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-08-31 12:16:47 -04:00

22 lines
441 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# - "3.7-dev"
# - "pypy"
# - "pypy3" # TODO: pkg_config issues
# command to install dependencies
install:
- "pip install -e ."
- "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; fi
- pipenv run pytest tests