mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-21 15:20:59 +00:00
0a4501a4b1
Signed-off-by: Erin O'Connell <erinocon5@gmail.com>
26 lines
465 B
YAML
26 lines
465 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 -n 8 tests"
|
||
|
||
# command to run tests
|
||
# jobs:
|
||
# include:
|
||
# - stage: "✨ Flake8 Nit–Picking ✨"
|
||
# python: "3.6"
|
||
# script: "pipenv run flake8"
|