Skip to content

Commit

Permalink
Add slow tests with basic dependencies only
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobachetti committed Sep 22, 2023
1 parent df03308 commit 67087e3
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci_test.yml
Expand Up @@ -100,21 +100,30 @@ 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'
use_remote_data: true
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
Expand Down

0 comments on commit 67087e3

Please sign in to comment.