From e722178f7ea21dfcd2fd1a38306b71962ab40214 Mon Sep 17 00:00:00 2001 From: mmcardle Date: Fri, 15 Mar 2024 20:11:09 +0000 Subject: [PATCH] Circle conf --- .circleci/config.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 091c8a4..2d1777a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,15 +18,11 @@ jobs: - python/install-packages: pkg-manager: poetry - run: + name: Install dependencies command: | poetry install sudo apt-get update sudo apt-get install -y libfuse-dev - name: Install dependencies - - run: - command: | - poetry run pytest - name: Run tests pytest: executor: python steps: @@ -51,5 +47,6 @@ jobs: workflows: main: jobs: - - pytest + - build + - pytest: {requires: [build]} - linting