From ec1444bc74b4ab2462732b8b51ad60317b3f1933 Mon Sep 17 00:00:00 2001 From: Anthony Onwuli <30937913+AntObi@users.noreply.github.com> Date: Thu, 7 Dec 2023 21:12:47 +0000 Subject: [PATCH] Remove pip install from requirements in ci.yml --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0aa4e733..23aa4321 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,6 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip wheel setuptools - pip install -r requirements.txt pip install -e . pip install pytest-cov - name: Run tests and collect coverage