From cb811c739fb85ff579fe892e5e7d72c9b8801e28 Mon Sep 17 00:00:00 2001 From: Xing Wang Date: Thu, 21 Mar 2024 16:14:55 +0100 Subject: [PATCH] Add aiida-core-version in the CI test (#643) --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1645e175..4e8ebe76d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: matrix: tag: [latest] python-version: ['3.9', '3.10'] + aiida-core-version: [2.3, 2.4.3] fail-fast: false runs-on: ubuntu-latest @@ -46,7 +47,7 @@ jobs: **/pyproject.toml **/requirements*.txt - name: Install package - run: pip install -e .[dev] + run: pip install -e .[dev] aiida-core==${{ matrix.aiida-core-version }} - name: Run pytest run: pytest -v tests --cov