WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Added replicability check #179

Added replicability check

Added replicability check #179

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest]
python: ['3.8', '3.9', '3.10']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install -e .[test,all]
- name: run tests
run: python3 -m pytest --cov=tlviz
- name: upload coverage to Codecov
if: ${{matrix.os == 'ubuntu-latest' && matrix.python == '3.10'}}
uses: codecov/codecov-action@v2
with:
verbose: true