From 331698a4bb411288515f7eeb80dca97438d923d7 Mon Sep 17 00:00:00 2001 From: delucchi-cmu Date: Wed, 21 Jun 2023 10:10:37 -0400 Subject: [PATCH] Remove redundant installs. --- .github/workflows/testing-and-coverage.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/testing-and-coverage.yml b/.github/workflows/testing-and-coverage.yml index 1676fea9..b497a967 100644 --- a/.github/workflows/testing-and-coverage.yml +++ b/.github/workflows/testing-and-coverage.yml @@ -27,7 +27,6 @@ jobs: run: | sudo apt-get update python -m pip install --upgrade pip - pip install -e . pip install -e .[dev] if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Run unit tests with pytest