mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-21 15:20:59 +00:00
75825d9bcf
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
26 lines
450 B
YAML
26 lines
450 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"
|
||
|
||
# command to run the dependencies
|
||
script:
|
||
- "pipenv run pytest tests"
|
||
|
||
# command to run tests
|
||
jobs:
|
||
include:
|
||
- stage: "✨ Flake8 Nit–Picking ✨"
|
||
python: "3.6"
|
||
script: "pipenv run flake8"
|