From 51ee8caa4a697fa3f4120e93b1c205b714a6cdc7 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 15 Dec 2022 12:51:18 -0800 Subject: [PATCH] Try running every test at once, refs #1955 --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 886f649a..c4032656 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,8 +33,9 @@ jobs: pip freeze - name: Run tests run: | - pytest -n auto -m "not serial" - pytest -m "serial" + # pytest -n auto -m "not serial" + # pytest -m "serial" + pytest -n auto - name: Check if cog needs to be run run: | cog --check docs/*.rst