From c45e82149c755829f17b20897a2dceec577c4fd0 Mon Sep 17 00:00:00 2001 From: Andrew Davison Date: Tue, 9 Jan 2024 23:05:50 +0100 Subject: [PATCH] Sumatra needs to be installed to run tests --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4b5000a0..225e96bd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,11 +23,12 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: Install run: | python -m pip install --upgrade pip pip install -r ci/requirements.txt pip install -r ci/requirements-test.txt + pip install . - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names