Skip to content

Bump tornado from 6.1 to 6.4.2 in /requirements #1227

Bump tornado from 6.1 to 6.4.2 in /requirements

Bump tornado from 6.1 to 6.4.2 in /requirements #1227

Workflow file for this run

---
name: Tests
on:
pull_request:
paths:
- '**'
push:
paths:
- '**'
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build Docker
run: |
make build
- name: Run tests
run: |
make test-root
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
test-build:
name: Test build
runs-on: ubuntu-latest
needs:
- integration-tests
if: |
github.event_name == 'push'
&& needs.integration-tests.result == 'success'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build package
run: |
python setup.py sdist bdist_wheel # Could also be python -m build