Skip to content

End to end testing for RecCeiver. #86

End to end testing for RecCeiver.

End to end testing for RecCeiver. #86

Workflow file for this run

name: recceiver
on:
push:
branches: [ "master" ]
paths:
- server/**
pull_request:
branches: [ "master" ]
paths:
- server/**
jobs:
build-server:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install .
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] # testcontainers is not supported on <3.9
needs: build-server
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install '.[test]'
python -m pip install .
- name: Clear existing docker image cache
shell: bash
run: docker image prune -af
- name: Test with pytest
run: |
pytest