Skip to content

Bump tornado from 4.5.3 to 6.3.3 #33

Bump tornado from 4.5.3 to 6.3.3

Bump tornado from 4.5.3 to 6.3.3 #33

Workflow file for this run

name: Tests
on: push
jobs:
run-tests:
name: Run pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_dev.txt
pip install -e .
pip install coverage coveralls
- name: Test with pytest
run: |
python -m pytest -v --color=yes --cov rltk rltk/tests/test_*
- name: Coverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
coveralls --service=github