Skip to content

Commit

Permalink
Merge pull request #158 from MichaelAquilina/fix_poetry
Browse files Browse the repository at this point in the history
Fix broken poetry build
  • Loading branch information
MichaelAquilina committed Oct 28, 2018
2 parents c2cb2e4 + 482381e commit ca414c6
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test: &test
command: apt-get update && apt-get install -y less
- run:
name: install poetry
command: curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
command: pip install poetry
- run:
name: install python dependencies
command: poetry install
Expand All @@ -17,11 +17,7 @@ test: &test
command: |
mkdir -p /tmp/test-results
PYTHONPATH="." poetry run pytest --cov=s4 --cov=tests --cov-report xml --junitxml=/tmp/test-results/pytest-results.xml
# Only upload for python 3.7 instead of uploading multiple
if [[ "$CIRCLE_JOB" == "test-3.7" ]]; then
bash <(curl -s https://codecov.io/bash)
fi
bash <(curl -s https://codecov.io/bash)
- store_test_results:
path: /tmp/test-results
Expand Down Expand Up @@ -53,7 +49,7 @@ jobs:
- run:
name: install poetry
command: curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
command: pip install poetry

- run:
name: version lint
Expand Down

0 comments on commit ca414c6

Please sign in to comment.