From 497ccca8e68eb27db0e3de2d3be4e4924658a117 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 25 Jun 2022 16:20:21 +0200 Subject: [PATCH] Fix check --- .github/workflows/check.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 3c08616..3964916 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -28,9 +28,7 @@ jobs: - name: Install dependencies run: | python3 -m pip install --upgrade pip setuptools pytest pytest-cov pytest-subtests pytest-asyncio - (pip install --editable .) || true - (test -f requirements.txt && pip install -r requirements.txt --upgrade) || true - (test -f dev-requirements.txt && pip install -r dev-requirements.txt --upgrade) || true + pip install . - name: Check code and formatting run: scripts/check-python.sh . @@ -58,7 +56,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt --upgrade + pip install . - name: Download test results uses: actions/download-artifact@v2