Skip to content

Commit

Permalink
refactor: Rm java steps in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
r-leyshon committed Jun 21, 2024
1 parent 0d90bd0 commit c7f1316
Showing 1 changed file with 7 additions and 21 deletions.
28 changes: 7 additions & 21 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# This workflow will install Python dependencies and run only integration tests
# This is a standalone runner such that if integration testing fails it does not
# impact other runners.
# Fixing OS version to avoid breaking OS changes during development stage.
# Will open up OS versions before release.
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
# This workflow will install Python dependencies and run full tests including
# integration tests This is a standalone runner such that if integration
# testing fails it does not impact other runners. Fixing OS version to avoid
# breaking OS changes during development stage. Will open up OS versions before
# release. For more information see:
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: MacOS Integration Tests

Expand Down Expand Up @@ -32,21 +32,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install '.[test]'
- name: Install java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11.0.21'
- name: Check Java Install
run: |
java --version
- name: Install mac dependencies with brew # not updating brew version, issue with aom
run: |
brew --version
curl https://raw.githubusercontent.com/Homebrew/homebrew-core/fc3b38db25493e08020dd2479a94061636edcad4/Formula/osmosis.rb > osmosis.rb
brew install --build-from-source ./osmosis.rb
brew info osmosis
shell: sh
- name: Run Integration Tests Only
- name: Run Test Suite with Integration Tests
run: |
pytest --runinteg --sanitycheck

0 comments on commit c7f1316

Please sign in to comment.