We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 319eeb0 commit c781390Copy full SHA for c781390
.github/workflows/test_cloudpods.yml
@@ -23,13 +23,13 @@ jobs:
23
output=$(gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[] | select(.tag_name|startswith("v")|not) | .tag_name]')
24
output=$(echo $output | tr '\n' ' ')
25
echo "matrix=$output" >> $GITHUB_OUTPUT
26
-
+
27
test-pod-release:
28
needs: get-releases
29
runs-on: ubuntu-latest
30
strategy:
31
fail-fast: false
32
- matrix:
+ matrix:
33
tag: ${{ fromJson(needs.get-releases.outputs.matrix) }}
34
steps:
35
# checkout to run the tests later on
@@ -78,7 +78,7 @@ jobs:
78
AWS_ACCESS_KEY_ID: test
79
AWS_SECRET_ACCESS_KEY: test
80
run: |
81
- pip install -r requirements-dev.txt
+ pip install -e ".[test]"
82
pytest tests
83
84
- name: Show Logs
0 commit comments