From 8c73dbfe3197c75e8116a4c11fb42b182633f6c3 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Sun, 7 Jul 2024 14:17:13 +0800 Subject: [PATCH 1/2] CI: Remove the pytest-xdist and pytest-rerunfailures plugins from the Benchmarks workflow --- .github/workflows/benchmarks.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index f4c2153e73e..bcefcf1a667 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -69,8 +69,6 @@ jobs: pytest pytest-codspeed pytest-mpl - pytest-rerunfailures - pytest-xdist # Download cached remote files (artifacts) from GitHub - name: Download remote data from GitHub From f0456381b4168abaa75fba017e426da6674e0f19 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Sun, 7 Jul 2024 14:30:33 +0800 Subject: [PATCH 2/2] Remove extra options --- .github/workflows/benchmarks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index bcefcf1a667..3275b2f941d 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -91,4 +91,4 @@ jobs: with: # 'bash -el -c' is needed to use the custom shell. # See https://github.com/CodSpeedHQ/action/issues/65. - run: bash -el -c "python -c \"import pygmt; pygmt.show_versions()\"; PYGMT_USE_EXTERNAL_DISPLAY=false python -m pytest -r P -n auto --reruns 2 --pyargs pygmt --codspeed" + run: bash -el -c "python -c \"import pygmt; pygmt.show_versions()\"; PYGMT_USE_EXTERNAL_DISPLAY=false python -m pytest -r P --pyargs pygmt --codspeed"