From cc79d8ccf8feae2fc9afada386c7aef2530bb021 Mon Sep 17 00:00:00 2001 From: Daniel Sanche Date: Fri, 15 Dec 2023 15:38:11 -0800 Subject: [PATCH] chore: pin conformance tests to v0.0.2 (#903) --- .github/workflows/conformance.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index 69350b18d..63023d162 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -24,10 +24,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: + test-version: [ "v0.0.2" ] py-version: [ 3.8 ] client-type: [ "Async v3", "Legacy" ] fail-fast: false - name: "${{ matrix.client-type }} Client / Python ${{ matrix.py-version }}" + name: "${{ matrix.client-type }} Client / Python ${{ matrix.py-version }} / Test Tag ${{ matrix.test-version }}" steps: - uses: actions/checkout@v3 name: "Checkout python-bigtable" @@ -35,7 +36,7 @@ jobs: name: "Checkout conformance tests" with: repository: googleapis/cloud-bigtable-clients-test - ref: main + ref: ${{ matrix.test-version }} path: cloud-bigtable-clients-test - uses: actions/setup-python@v4 with: