Another workaround: fixes pytest installation problems with python 3.5

pull/206/head
David Núñez 2018-08-18 19:22:16 -05:00
parent bac175ed68
commit 2e4b0ed02d
1 changed files with 3 additions and 1 deletions

View File

@ -107,7 +107,9 @@ jobs:
# key: v2-deps-{{ .Environment.CIRCLE_WORKFLOW_ID }}-{{ checksum "Pipfile.lock" }}-py35
- run:
name: Install dependencies
command: pipenv sync --three --dev
command: |
pipenv sync --three --dev
pipenv install --dev pytest
- run:
name: pyUmbral Tests (Python 3.5)
command: pipenv run pytest --cov=. --cov-report=html --junitxml=./reports/pytest/python35-results.xml