We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64cd703 commit 686d87bCopy full SHA for 686d87b
1 file changed
.circleci/config.yml
@@ -2,15 +2,11 @@ version: 2.1
2
3
jobs:
4
build:
5
- # directory where steps are run
6
working_directory: ~/cli-project
7
- docker: # run the steps with Docker
+ docker:
8
- image: circleci/python:3.8
9
- # environment: # environment variables for primary container
10
- # PIPENV_VENV_IN_PROJECT: true
11
steps:
12
- checkout
13
- run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
14
- run: poetry install && poetry build
15
- #poetry env info --path
16
- run: poetry run pytest --maxfail=1 tests
0 commit comments