From c0cab1c3caf1e6a49a70e8be68da4f3c646bca0c Mon Sep 17 00:00:00 2001 From: grossmj Date: Tue, 20 Oct 2020 11:05:12 +1030 Subject: [PATCH] Install Windows dependencies to run tests --- .github/workflows/testing.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 8f35f3c0..91668f45 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -32,6 +32,9 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install -r dev-requirements.txt + - name: Install State Tool (Windows) + if: matrix.os == 'windows-latest' + run: python -m pip install -r win-requirements.txt - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names