Skip to content

Release v1.10.1

Release v1.10.1 #57

Workflow file for this run

name: Integration Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
services:
integration-db:
image: ghcr.io/diamondlightsource/pato-backend-db:master
ports:
- 3306:3306
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Test with pytest
env:
CONFIG_PATH: /home/runner/work/pato-backend/pato-backend/config.json
run: |
pytest tests -W ignore::DeprecationWarning