From d93f975b3dbdf37ce91c176e24b920b041cf7571 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 17 Dec 2022 18:52:52 -0800 Subject: [PATCH] On publish run tests same way as for test --- .github/workflows/publish.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fa608055..b7d99c1c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,7 +31,10 @@ jobs: pip install -e '.[test]' - name: Run tests run: | - pytest + pytest -n auto -m "not serial" + pytest -m "serial" + # And the test that exceeds a localhost HTTPS server + tests/test_datasette_https_server.sh deploy: runs-on: ubuntu-latest