Skip to content

Commit f589b1a

Browse files
author
Arvid Paeglit
committed
test fixes and optimized circleCI config to simplify if
1 parent 1b2812c commit f589b1a

6 files changed

Lines changed: 28 additions & 1566 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
version: 2.1
22

3-
# orbs:
4-
# python38: circleci/python@3.8
5-
63
jobs:
74
build:
85
# directory where steps are run
96
working_directory: ~/cli-project
107
docker: # run the steps with Docker
118
- image: circleci/python:3.8
12-
# auth:
13-
# username: mydockerhub-user
14-
# password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
159
environment: # environment variables for primary container
1610
PIPENV_VENV_IN_PROJECT: true
1711
steps:
1812
- checkout
1913
- run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
2014
- run: poetry install && poetry build
21-
- run: poetry run pytest tests
15+
#poetry env info --path
16+
- run: poetry run pytest --maxfail=1 tests

0 commit comments

Comments
 (0)