From e316ee248a2f279944de5ad1857e92b8bd144f60 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Wed, 6 Apr 2022 14:51:20 -0400 Subject: [PATCH] Streamline CI deps --- .github/workflows/testing.yaml | 2 +- requires/development.txt | 1 - requires/testing.txt | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 3e58ff6..25adc78 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v2 - name: Install testing dependencies - run: pip3 --no-cache-dir install -r requires/development.txt + run: pip3 --no-cache-dir install -e '.[sentry]' -r requires/testing.txt - name: Run flake8 tests run: flake8 diff --git a/requires/development.txt b/requires/development.txt index 007e844..81342a5 100644 --- a/requires/development.txt +++ b/requires/development.txt @@ -1,4 +1,3 @@ -e '.[sentry]' -r testing.txt -r docs.txt -flake8==4.0.1 diff --git a/requires/testing.txt b/requires/testing.txt index 51755b7..525b366 100644 --- a/requires/testing.txt +++ b/requires/testing.txt @@ -1,2 +1,3 @@ coverage==6.3.1 +flake8==4.0.1 tox==3.24.5