Skip to content

removed logging prints #568

removed logging prints

removed logging prints #568

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
name: Run tests
on:
push:
paths:
- '**.py'
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox -e py3