Skip to content

Commit 7f3212f

Browse files
committed
Get poetry into our path
1 parent e735a21 commit 7f3212f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- run:
1717
name: Install Dependencies
1818
command: |
19+
source $HOME/.poetry/env
1920
poetry install
2021
- save_cache:
2122
key: deps-{{ checksum "poetry.lock" }}
@@ -25,6 +26,7 @@ jobs:
2526
- run:
2627
name: Run Tests
2728
command: |
29+
source $HOME/.poetry/env
2830
poetry run ./runtests
2931
3032
deploy:
@@ -35,6 +37,8 @@ jobs:
3537
- run:
3638
name: Push to PyPI
3739
command: |
40+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
41+
source $HOME/.poetry/env
3842
poetry publish \
3943
--build \
4044
--username "${PYPI_USERNAME}" \

0 commit comments

Comments
 (0)