From eaf1620e88dd5975381e0d29c5dee853b5ce81b9 Mon Sep 17 00:00:00 2001 From: Diego Hurtado Date: Wed, 3 Jul 2024 16:40:23 -0600 Subject: [PATCH] Another attempt separating both runs --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e118f88c65..cc19428329 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -92,9 +92,10 @@ jobs: - name: Windows does not let git check out files with long names if: ${{ matrix.os == 'windows-2019'}} run: git config --system core.longpaths true - - name: run tox + - name: run pytest with --benchmark-skip if: ${{ matrix.package == 'sdk' || matrix.package == 'exporter-otlp-proto-grpc' }} run: tox -f ${{ matrix.python-version }}-${{ matrix.package }} -- -ra --benchmark-skip + - name: run pytest without --benchmark-skip if: ${{ !(matrix.package == 'sdk' || matrix.package == 'exporter-otlp-proto-grpc') }} run: tox -f ${{ matrix.python-version }}-${{ matrix.package }} -- -ra misc: