From 0aea7f66078ae13c3e9559875adf44c9e17936c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 16 Jun 2021 17:53:25 -0700 Subject: [PATCH] chg: reorder tests --- .github/workflows/nosetests.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/nosetests.yml b/.github/workflows/nosetests.yml index 786dae7d..44010165 100644 --- a/.github/workflows/nosetests.yml +++ b/.github/workflows/nosetests.yml @@ -21,6 +21,14 @@ jobs: with: python-version: ${{matrix.python-version}} + - name: Make sure SRIs are up-to-date + run: | + poetry run tools/generate_sri.py + if $?; then + echo "SRIs not up-to-date, you must run tools/generate_sri.py" + exit 1 + fi + - name: Install dependencies run: | sudo apt install libfuzzy-dev @@ -31,10 +39,3 @@ jobs: run: | poetry run mypy . - - name: Make sure SRIs are up-to-date - run: | - poetry run tools/generate_sri.py - if $?; then - echo "SRIs not up-to-date, you must run tools/generate_sri.py" - exit 1 - fi