From ba86757f4a79b9c7d8ac190a3ecd2bffc4b2ebe4 Mon Sep 17 00:00:00 2001 From: Viet Nguyen Duc Date: Wed, 13 Nov 2024 11:43:41 +0700 Subject: [PATCH] [ci] Update python tests Signed-off-by: Viet Nguyen Duc --- .github/workflows/ci-python.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 6f1dad4068f9b..708edb818da66 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -85,10 +85,18 @@ jobs: fail-fast: false matrix: include: + - browser: safari + os: macos + - browser: chrome + os: ubuntu + - browser: edge + os: ubuntu - browser: firefox + os: ubuntu with: - name: Integration Tests (remote, ${{ matrix.browser }}) + name: Integration Tests (remote, ${{ matrix.browser }}, ${{ matrix.os }}) browser: ${{ matrix.browser }} + os: ${{ matrix.os }} cache-key: py-remote-${{ matrix.browser }} run: bazel test --local_test_jobs 1 --flaky_test_attempts 3 //py:test-remote @@ -104,8 +112,12 @@ jobs: os: macos - browser: chrome os: macos + - browser: edge + os: macos + - browser: firefox + os: macos with: - name: Integration Tests (${{ matrix.browser }}, ${{ matrix.os }}) + name: Browser Tests (${{ matrix.browser }}, ${{ matrix.os }}) browser: ${{ matrix.browser }} os: ${{ matrix.os }} cache-key: py-browser-${{ matrix.browser }}