Bump tornado from 6.3.3 to 6.4.1 #105
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Run "pre-commit run --all-files --hook-stage=manual" | |
pre-commit: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- uses: pre-commit/[email protected] | |
with: | |
extra_args: --all-files --hook-stage=manual | |
- name: Help message if pre-commit fail | |
if: ${{ failure() }} | |
run: | | |
echo "You can install pre-commit hooks to automatically run formatting" | |
echo "on each commit with:" | |
echo " pre-commit install" | |
echo "or you can run by hand on staged files with" | |
echo " pre-commit run" | |
echo "or after-the-fact on already committed files with" | |
echo " pre-commit run --all-files --hook-stage=manual" | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Base Setup | |
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
- name: Install the Python dependencies | |
run: | | |
pip install -r requirements-test.txt | |
- name: Run the tests | |
run: python -m pytest -vv -raXs || python -m pytest -vv -raXs --lf | |
- name: Start the App | |
env: | |
GITHUB_INTEGRATION_ID: 812 | |
GITHUB_BOT_NAME: meeseeksdev-test | |
WEBHOOK_SECRET: foo | |
PERSONAL_ACCOUNT_NAME: snuffy | |
PERSONAL_ACCOUNT_TOKEN: token | |
TESTING: true | |
run: | | |
set -eux | |
python -m meeseeksdev & | |
TASK_PID=$! | |
# Make sure the task is running | |
ps -p $TASK_PID | |
# Connect to the task | |
python .github/workflows/connect.py | |
# Kill the task | |
kill $TASK_PID | |
wait $TASK_PID |