We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd8b24f commit 59cc8e9Copy full SHA for 59cc8e9
.github/workflows/ci.yaml
@@ -350,7 +350,13 @@ jobs:
350
SVC=verticadb-sample-defaultsubcluster
351
LOCATOR="${SVC}.${NS}.svc.cluster.local:5433"
352
POD=py-test-runner
353
- IMAGE=python:${{ matrix.python-version }}-slim
+ if [[ "${{ matrix.python-version }}" == pypy* ]]; then
354
+ # Strip the "pypy" prefix to get just "3.10"
355
+ VERSION="${{ matrix.python-version#pypy }}"
356
+ IMAGE="pypy:${VERSION}"
357
+ else
358
+ IMAGE="python:${{ matrix.python-version }}"
359
+ fi
360
echo "Ensuring namespace ${NS} exists..."
361
kubectl get ns ${NS} >/dev/null 2>&1 || kubectl create ns ${NS}
362
echo "Waiting for Vertica service endpoints..."
0 commit comments