From a4a24c84bd2cea24aed46041f7a604b0abd1b929 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sat, 16 Mar 2024 13:48:17 +0100 Subject: [PATCH] Enable test_pageseg in GitHub CI test action That test passes and does not need much time, so there is no reason to exclude it from the test. Signed-off-by: Stefan Weil --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 725ab6562..eac90c000 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Run tests, except training tests run: | - pytest -k 'not test_train and not test_pageseg' + pytest -k 'not test_train' build-n-publish-pypi: name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI