From 629fcc479ec635b0883df9ff027a2c8748242424 Mon Sep 17 00:00:00 2001 From: Bryson Tyrrell Date: Tue, 13 Feb 2024 09:29:17 -0600 Subject: [PATCH] Integration test job needs its own environment - revert changes to standard lints/tests. --- .github/workflows/main_pr_tests.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main_pr_tests.yaml b/.github/workflows/main_pr_tests.yaml index abb3dcf..4bd686d 100644 --- a/.github/workflows/main_pr_tests.yaml +++ b/.github/workflows/main_pr_tests.yaml @@ -28,10 +28,6 @@ jobs: - name: Install run: make install - automated-tests: - needs: setup-env - runs-on: ubuntu-latest - steps: - name: Lint Checker run: make lint @@ -39,9 +35,17 @@ jobs: run: make test exp-integration-tests: - needs: setup-env continue-on-error: true runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: '3.9' + cache: 'pip' + - name: Run Integration Tests run: make test-all