mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-21 07:10:58 +00:00
6c52ee088e
Signed-off-by: Dan Ryan <dan@danryan.co>
26 lines
577 B
YAML
26 lines
577 B
YAML
sudo: false
|
|
dist: trusty
|
|
language: python
|
|
python:
|
|
- "3.6"
|
|
- "2.7"
|
|
env:
|
|
global:
|
|
- PYPI_VENDOR_DIR='./tests/pypi/'
|
|
- GIT_ASK_YESNO='false'
|
|
- PYTHONIOENCODING='utf-8'
|
|
matrix:
|
|
- TEST_SUITE='not install'
|
|
- TEST_SUITE='install'
|
|
PYTEST_ADDOPTS='--cache-clear'
|
|
|
|
install:
|
|
- "pip install --upgrade pip"
|
|
- "pip install -e . --upgrade --upgrade-strategy=only-if-needed"
|
|
- "pipenv install --dev"
|
|
- 'pip install -e "$(pwd)" --upgrade'
|
|
- 'pipenv install --deploy --system --dev'
|
|
|
|
script:
|
|
- 'pipenv run time pytest -v -n 4 -m "$TEST_SUITE" tests'
|