From 4545f1fe877df2d000c96cc066f23219371fcb89 Mon Sep 17 00:00:00 2001 From: Timothy Nunn Date: Thu, 6 Nov 2025 11:51:54 +0000 Subject: [PATCH] Run 0.2% tolerance on CI/CD instead of 0% --- .github/workflows/process.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/process.yml b/.github/workflows/process.yml index b2c0a02b52..97e8785560 100644 --- a/.github/workflows/process.yml +++ b/.github/workflows/process.yml @@ -80,7 +80,7 @@ jobs: continue-on-error: true strategy: matrix: - tolerance: [0, 5] + tolerance: [0.2, 5] steps: - uses: actions/checkout@v4 with: @@ -91,7 +91,7 @@ jobs: - name: Install PROCESS # Editable install to match default install run: | - pip install -e '.[test, examples]' + pip install -e '.[test]' pip install -r requirements_dev.txt - name: Allow git commands to be run run: git config --global --add safe.directory '*'