From ec1fd5723b9efcebcb3a8d25b96b3a26e1aeacfd Mon Sep 17 00:00:00 2001 From: Sanjana Garg Date: Wed, 31 Jan 2024 15:54:52 -0800 Subject: [PATCH] Removed unncessary dependencies in dev req file --- .github/workflows/ci.yml | 3 ++- requirements-dev.txt | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 138e71a9..5ae6bb2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest pytest-cov psutil -e ".[all]" + pip install -e ".[all]" + pip install -r requirements-dev.txt shell: bash - name: Test with coverage run: pytest --verbose --cov=src/cleanvision/ --cov-config .coveragerc --cov-report=xml tests/ diff --git a/requirements-dev.txt b/requirements-dev.txt index 24cc38b3..40d9db0c 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,9 +4,6 @@ mypy pre-commit pytest pytest-cov -pytest-lazy-fixture -datasets>=2.7.0 -torchvision>=0.12.0 black build flake8