-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated integration-cloud-token and integration-cloud-vector-search …
…to github actions.
- Loading branch information
1 parent
a255908
commit 1eaa5c8
Showing
3 changed files
with
74 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Integration - cloud token | ||
|
||
on: | ||
workflow_dispatch: | ||
# Uncomment these when reviewed. | ||
# push: | ||
# branches: | ||
# - master | ||
# pull_request: | ||
# branches: | ||
# - master | ||
# schedule: | ||
# - cron: '0 11 * * *' | ||
|
||
jobs: | ||
integration-cloud-token: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.9' | ||
- name: Install dependencies | ||
run: | | ||
pip install -e .[dev] | ||
- name: Run integration tests | ||
env: | ||
VESPA_TEAM_API_KEY: ${{ secrets.VESPA_TEAM_API_KEY }} | ||
CO_API_KEY: ${{ secrets.VESPA_CLOUD_SECRET_TOKEN }} | ||
run: | | ||
pytest tests/integration/test_integration_vespa_cloud_token.py -s -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Integration - cloud vector search | ||
|
||
on: | ||
workflow_dispatch: | ||
# Uncomment these when reviewed. | ||
# push: | ||
# branches: | ||
# - master | ||
# pull_request: | ||
# branches: | ||
# - master | ||
# schedule: | ||
# - cron: '0 11 * * *' | ||
|
||
jobs: | ||
integration-cloud-vector-search: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.9' | ||
- name: Install dependencies | ||
run: | | ||
pip install -e .[dev] | ||
- name: Run integration tests | ||
env: | ||
VESPA_TEAM_API_KEY: ${{ secrets.VESPA_TEAM_API_KEY }} | ||
CO_API_KEY: ${{ secrets.VESPA_CLOUD_SECRET_TOKEN }} | ||
run: | | ||
pytest tests/integration/test_integration_vespa_cloud_vector_search.py -s -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters