Skip to content

improve visualizations #280

improve visualizations

improve visualizations #280

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- dev
- develop
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "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
if [ -f requirements/requirements.txt ]; then pip install -r requirements/requirements.txt; fi
if [ -f requirements/tests_requirements.txt ]; then pip install -r requirements/tests_requirements.txt; fi
python setup.py install
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 ./tsgm
- name: Test with pytest
run: |
pytest
- name: Generate coverage report
if: success()
run: |
pip install coverage
coverage run -m pytest
coverage xml
- name: Upload coverage report to codecov
uses: codecov/codecov-action@v3
if: success()
with:
file: coverage.xml