Skip to content

Bump pytest-xdist from 3.7.0 to 3.8.0 #1195

Bump pytest-xdist from 3.7.0 to 3.8.0

Bump pytest-xdist from 3.7.0 to 3.8.0 #1195

Workflow file for this run

---
name: ci
"on":
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: python -m pip install .[test]
- name: Run lints
run: ./lint.sh
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python_version }}
cache: pip
- name: install dependencies
run: |
python -m pip install .[test]
- name: run tests
run: |
python -m pytest tests -n auto -m "not long_running"
long_test_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: 3.13
cache: pip
- name: install dependencies
run: |
python -m pip install .[test]
- name: run tests
run: |
python -m pytest tests -m long_running
long_test_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: 3.13
cache: pip
- name: install dependencies
run: |
python -m pip install .[test]
- name: run tests
run: |
python -m pytest tests -m long_running