From 67087e37c8ef8a7a1355a9cece5bf9d20c3a5ed5 Mon Sep 17 00:00:00 2001 From: Matteo Bachetti Date: Fri, 22 Sep 2023 15:47:48 +0200 Subject: [PATCH] Add slow tests with basic dependencies only --- .github/workflows/ci_test.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml index 0e41a073c..58b00f95f 100644 --- a/.github/workflows/ci_test.yml +++ b/.github/workflows/ci_test.yml @@ -100,8 +100,15 @@ jobs: use_remote_data: true experimental: false + # Development version of dependencies + - name: Linux, Py3.11 with dev versions of dependencies + os: ubuntu-latest + python: '3.11' + tox_env: 'py311-test-devdeps' + experimental: false + # Test with all optional dependencies installed. - - name: Slow tests on Linux, Py3.11 and coverage + - name: Slow tests on Linux, Py3.11, all deps and coverage os: ubuntu-latest python: '3.11' tox_env: 'py311-test-alldeps-cov' @@ -109,12 +116,14 @@ jobs: experimental: false slow: true - # Development version of dependencies - - name: Linux, Py3.11 with dev versions of dependencies + # Test with all optional dependencies installed. + - name: Slow tests on Linux, Py3.11, basic deps and coverage os: ubuntu-latest python: '3.11' - tox_env: 'py311-test-devdeps' + tox_env: 'py311-test-cov' + use_remote_data: true experimental: false + slow: true steps: - name: Check out repository