From 9d83152161deac9bf5ac8302ab0c293a930b7448 Mon Sep 17 00:00:00 2001 From: Michal Klein <46717574+michalk8@users.noreply.github.com> Date: Tue, 23 May 2023 12:17:19 +0200 Subject: [PATCH] Use test requirements in CI, test on 3.10/3.11 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bfab74e4..c48d3614 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: [3.8, 3.9] + python-version: [3.8, 3.9, 3.10, 3.11] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -53,7 +53,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip install -e '.[dev]' + run: pip install -e '.[test]' - name: Unit tests timeout-minutes: 60 run: python -m pytest --durations=25 --ignore=tests/datasets/test_datasets.py --hypothesis-profile=ci --cov=scvelo -vv