From 3b46ddbd0fea608e634ec962a261cc7f8dbc9749 Mon Sep 17 00:00:00 2001 From: Simon Liu Date: Tue, 11 Jun 2024 10:20:54 -0700 Subject: [PATCH] get associations first in regression workflow --- .github/workflows/regression.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index cc3840cda4..3213897fa9 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -40,8 +40,8 @@ jobs: CMR_USER: ${{ secrets.CMR_USER }} CMR_PASS: ${{ secrets.CMR_PASS }} run: | - poetry run pytest -n 10 verify_collection.py --env ${{ matrix.environment }} --regression --junitxml=$GITHUB_WORKSPACE/test-results/${{ matrix.environment }}_test_report.xml || true poetry run python get_associations.py + poetry run pytest -n 10 verify_collection.py --env ${{ matrix.environment }} --regression --junitxml=$GITHUB_WORKSPACE/test-results/${{ matrix.environment }}_test_report.xml || true - name: Run Create Issues Script working-directory: tests