From d4f15b12ba25fc3ecb21be8dc3af8307d7a05c6c Mon Sep 17 00:00:00 2001 From: Alexander Goscinski Date: Sun, 2 Feb 2025 10:16:09 +0100 Subject: [PATCH] DEBUG: test if only running test_container will work --- .github/workflows/ci-code.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-code.yml b/.github/workflows/ci-code.yml index 65bb5a0a19..a63f61690c 100644 --- a/.github/workflows/ci-code.yml +++ b/.github/workflows/ci-code.yml @@ -77,7 +77,8 @@ jobs: # NOTE1: Python 3.12 has a performance regression when running with code coverage # so run code coverage only for python 3.9. run: | - pytest -n auto --db-backend ${{ matrix.database-backend }} -m 'not nightly' tests/ ${{ matrix.python-version == '3.9' && '--cov aiida' || '' }} + #pytest -n auto --db-backend ${{ matrix.database-backend }} -m 'not nightly' tests/ ${{ matrix.python-version == '3.9' && '--cov aiida' || '' }} + pytest -n auto --db-backend ${{ matrix.database-backend }} -m 'not nightly' tests/storage/sqlite/test_container.py ${{ matrix.python-version == '3.9' && '--cov aiida' || '' }} - name: Upload coverage report if: matrix.python-version == 3.9 && github.repository == 'aiidateam/aiida-core'