Files
pipenv/.travis.yml
T
2017-09-02 15:48:51 -04:00

26 lines
462 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 --skip-lock"
# 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"