Skip to content

Update dependency tornado to v6.4.1 [SECURITY] #724

Update dependency tornado to v6.4.1 [SECURITY]

Update dependency tornado to v6.4.1 [SECURITY] #724

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on:
push:
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install nbexchange
run: |
python -m pip install .[test]
- name: Run tests
run: pytest --cov=nbexchange --cov-report=xml