Skip to content

Commit

Permalink
ref: include more cases for the test pypi install check
Browse files Browse the repository at this point in the history
  • Loading branch information
mgvalverde committed Aug 30, 2024
1 parent 80cfe73 commit 8e70610
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,10 @@ jobs:
timeout_minutes: 5
max_attempts: 3
command: |
pip install -i https://test.pypi.org/simple/ omegaconf_cloud_resolvers=="${TARGET_VERSION}"
pip install -i https://test.pypi.org/simple/ omegaconf_cloud_resolvers[aws,gcp]=="${TARGET_VERSION}"
python -c "import omegaconf_cloud_resolvers; print('Base import: OK')"
python -c "from omegaconf_cloud_resolvers.resolvers.aws import AWSParameterStoreResolver; print('AWS import: OK')"
python -c "from omegaconf_cloud_resolvers.resolvers.gcp import GCPSecretManagerResolver; print('GCP import: OK')"
Expand Down

0 comments on commit 8e70610

Please sign in to comment.