Skip to content

Update docs

Update docs #301

Workflow file for this run

name: client-python
on:
push:
pull_request:
branches:
- 'main'
jobs:
test:
runs-on: ubuntu-latest
container: ubuntu:latest
services:
model:
image: linusseelinger/model-muq-beam:latest
ports:
- 4242:4242
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Dependencies
run: |
apt update && DEBIAN_FRONTEND="noninteractive" apt install -y python3-pip python3-venv
python3 -m venv venv
. venv/bin/activate
pip3 install umbridge pytest
-
name: Build and run
run: |
. venv/bin/activate
cd testing/clients && pytest -v test_python.py