Skip to content

Bump tornado from 6.4.2 to 6.5.1 #126

Bump tornado from 6.4.2 to 6.5.1

Bump tornado from 6.4.2 to 6.5.1 #126

Workflow file for this run

name: Run Tests on PR
on: [pull_request]
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
# - run: poetry config installer.modern-installation false
- name: Install Project
run: poetry install --no-interaction
- name: Run tests
run: |
source .venv/bin/activate
pytest -m "not jb"