Skip to content

Commit

Permalink
create separate integration test dependecy install step
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwashington committed Jun 17, 2024
1 parent 2c837af commit 35f9d1f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/.github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
pip3 install google-cloud-aiplatform
- name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/auth@v2'
with:
Expand All @@ -83,6 +82,10 @@ jobs:
pip install .
# Set the working directory to test/integration to contain the generated files
# TODO move this to a temp directory
- name: 'Install integration test-specific dependencies'
run: |
pip3 install --upgrade numpy
pip3 install google-cloud-aiplatform
- name: Run integration tests
working-directory: tests/integration
env:
Expand Down

0 comments on commit 35f9d1f

Please sign in to comment.