Skip to content

fix sample clamping in web UI streaming service #49

fix sample clamping in web UI streaming service

fix sample clamping in web UI streaming service #49

Workflow file for this run

name: Core tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-ci.txt
- name: Run tests
run: |
python -m coverage run --source=irene --omit=**/test/** -m unittest discover .
- name: Submit coverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python -m coveralls --service=github