From b8b11b514de6bcb90d2612cb0ad926dbcd483820 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Wed, 24 Nov 2021 15:51:46 -0800 Subject: [PATCH] Install poetry deps after checking out --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9fb1e75..01476ad 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -102,11 +102,6 @@ jobs: machine: image: ubuntu-2004:202111-01 steps: - - run: - name: Install dependencies - command: | - sudo pip3 install poetry - poetry install # https://www.atlantic.net/dedicated-server-hosting/how-to-install-and-use-podman-on-ubuntu-20-04/ - run: name: Install podman on Ubuntu 20.04 @@ -119,6 +114,11 @@ jobs: sudo apt-get -qq --yes install podman podman --version - checkout + - run: + name: Install poetry dependencies + command: | + sudo pip3 install poetry + poetry install - run: name: Prepare cache directory command: |