Skip to content

Fix integration errors after api updates #1713

Fix integration errors after api updates

Fix integration errors after api updates #1713

name: CI (pip)
on: [push]
jobs:
build:
strategy:
matrix:
python-version: [3.7]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python web_install.py
- name: Test with pytest
run: |
pip install coverage
pip install pytest
pip install pyee==9
python -m coverage run -m pytest
python -m coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
verbose: true
files: ./coverage.xml