Skip to content

Commit

Permalink
Integration test job needs its own environment - revert changes to st…
Browse files Browse the repository at this point in the history
…andard lints/tests.
  • Loading branch information
brysontyrrell committed Feb 13, 2024
1 parent e39f576 commit 629fcc4
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/main_pr_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,24 @@ jobs:
- name: Install
run: make install

automated-tests:
needs: setup-env
runs-on: ubuntu-latest
steps:
- name: Lint Checker
run: make lint

- name: Tests
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

0 comments on commit 629fcc4

Please sign in to comment.