From d1a86a2d3a889d038c6bdfc4587e5cc691f06489 Mon Sep 17 00:00:00 2001 From: cvanelteren Date: Tue, 13 Jan 2026 15:33:34 +1000 Subject: [PATCH] Remove xdist from image compare --- .github/workflows/build-ultraplot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-ultraplot.yml b/.github/workflows/build-ultraplot.yml index 158f4bbb1..577ca9e2c 100644 --- a/.github/workflows/build-ultraplot.yml +++ b/.github/workflows/build-ultraplot.yml @@ -97,7 +97,7 @@ jobs: # Generate the baseline images and hash library python -c "import ultraplot as plt; plt.config.Configurator()._save_yaml('ultraplot.yml')" - pytest -x -n auto -W ignore \ + pytest -x -W ignore \ --mpl-generate-path=./ultraplot/tests/baseline/ \ --mpl-default-style="./ultraplot.yml"\ ultraplot/tests @@ -113,7 +113,7 @@ jobs: mkdir -p results python -c "import ultraplot as plt; plt.config.Configurator()._save_yaml('ultraplot.yml')" - pytest -x -n auto -W ignore -n auto\ + pytest -x -W ignore -n auto\ --mpl \ --mpl-baseline-path=./ultraplot/tests/baseline \ --mpl-results-path=./results/ \