Skip to content

Fix again test

Fix again test #88

Workflow file for this run

name: ci
on: [push, pull_request]
env:
FORCE_COLOR: 1
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Setup uv
uses: astral-sh/setup-uv@v6
with:
activate-environment: true
python-version: '3.9'
- name: Install Python dependencies
run: uv pip install -e .[pre-commit,tests]
- name: Run pre-commit
run: pre-commit run --all-files || ( git status --short ; git diff ; exit 1 )
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
services:
postgres:
image: postgres:12
rabbitmq:
image: rabbitmq:latest
ports:
- 5672:5672
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup uv
uses: astral-sh/setup-uv@v6
with:
activate-environment: true
python-version: '3.9'
- name: Install Python dependencies
run: uv pip install -e .[tests]
- name: Run pytest
env:
AIIDA_WARN_v3: 1
run: pytest -sv tests