Option to run tests with SSH debugging (#953)

This commit is contained in:
Manu 2021-04-18 21:33:48 +08:00 committed by GitHub
parent 96ed84b28d
commit 3b57ab43a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 3 deletions

View File

@ -1,6 +1,14 @@
name: Test
on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:
inputs:
debug_enabled:
description: 'Run the build with tmate debugging enabled'
required: false
default: false
jobs:
test:
@ -48,8 +56,9 @@ jobs:
pip install -e .
pip install -r requirements.d/dev.txt
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
- name: Test with pytest (Linux)
if: runner.os == 'Linux'