From 5b40ae49f3fb80c5d088e649c8f9f0d66210c997 Mon Sep 17 00:00:00 2001 From: jbannon Date: Fri, 29 Apr 2022 08:04:22 +0000 Subject: [PATCH] install all deps at once --- .github/workflows/build_lint_test.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build_lint_test.yaml b/.github/workflows/build_lint_test.yaml index d0b06021..c0af307e 100644 --- a/.github/workflows/build_lint_test.yaml +++ b/.github/workflows/build_lint_test.yaml @@ -17,12 +17,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install . + pip install .[lint,test] - name: Run linters run: | - pip install .[lint] ./tools/linter check - name: Run tests with coverage run: | - pip install .[test] ./tools/test