From 69b1ba3330e3b969f7337786b067122bfead04a6 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Fri, 7 Feb 2025 15:36:03 +0000 Subject: [PATCH] Run with --durations 0 option --- .github/workflows/gramps-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gramps-ci.yml b/.github/workflows/gramps-ci.yml index b5f5af49a0..df1f8d778f 100644 --- a/.github/workflows/gramps-ci.yml +++ b/.github/workflows/gramps-ci.yml @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: ["3.9", "3.13"] + python-version: ["3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -69,4 +69,4 @@ jobs: - name: Run unit test suite run: | export GDK_BACKEND=- - python3 setup.py test + python3 -m unittest discover --durations 0 -p "*_test.py"