From e95fb5a6a506e5c5c7867a38cb73af7782b6db82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Wed, 26 May 2021 17:59:51 +0200 Subject: [PATCH] forgot about bools, v1.7 --- .circleci/config.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 81f5ba5..a114f29 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,10 +35,7 @@ jobs: pkg-manager: pip # app-dir: ~/project/package-directory/ # If you're requirements.txt isn't in the root directory. # pip-dependency-file: requirements.txt # if you have a different name for your requirements file, maybe one that combines your runtime and test requirements. - - install: - name: Install the software - # This assumes pytest is installed via the install-package step above - command: DEBUG=1 python setup.py install && rm -rf minijson - run: - name: Test the software - command: pytest + name: Install the software and test it + # This assumes pytest is installed via the install-package step above + command: DEBUG=1 python setup.py install && rm -rf minijson && pytest -- GitLab