From 8256a8fd2a8028994828e7469894f41f5c06f89c Mon Sep 17 00:00:00 2001 From: marota Date: Mon, 6 Feb 2023 18:02:59 +0100 Subject: [PATCH] adding install package in cli config --- .circleci/config.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a35962b..ff85dd2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,10 +29,9 @@ jobs: # CircleCI will report the results back to your VCS provider. steps: - checkout - - python/install-packages: - pkg-manager: pip - # app-dir: ~/project/package-directory/ # If you're requirements.txt isn't in the root directory. - # pip-dependency-file: test-requirements.txt # if you have a different name for your requirements file, maybe one that combines your runtime and test requirements. + - run: sudo apt-get update + - run: pip install -r requirements.txt + - run: pip install . - run: name: Run tests # This assumes pytest is installed via the install-package step above