Update tests to not run all the time (#2311)
This commit is contained in:
parent
65e28b8c22
commit
2c03eee329
1
.github/workflows/codeql-analysis.yml
vendored
1
.github/workflows/codeql-analysis.yml
vendored
|
@ -5,6 +5,7 @@ on:
|
||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
|
types: [review_requested, ready_for_review]
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '25 16 * * 0'
|
- cron: '25 16 * * 0'
|
||||||
|
|
||||||
|
|
26
.github/workflows/coverage.yml
vendored
26
.github/workflows/coverage.yml
vendored
|
@ -1,17 +1,17 @@
|
||||||
name: Coverage check
|
name: Coverage check
|
||||||
# on:
|
on:
|
||||||
# push:
|
push:
|
||||||
# branches:
|
branches:
|
||||||
# - main
|
- main
|
||||||
# tags:
|
tags:
|
||||||
# - "!*" # Do not execute on tags
|
- "!*" # Do not execute on tags
|
||||||
# paths:
|
paths:
|
||||||
# - sanic/*
|
- sanic/*
|
||||||
# - tests/*
|
- tests/*
|
||||||
# pull_request:
|
pull_request:
|
||||||
# paths:
|
paths:
|
||||||
# - "!*.MD"
|
- "!*.MD"
|
||||||
on: [push, pull_request]
|
types: [review_requested, ready_for_review]
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
1
.github/workflows/pr-bandit.yml
vendored
1
.github/workflows/pr-bandit.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
types: [review_requested, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
bandit:
|
bandit:
|
||||||
|
|
1
.github/workflows/pr-docs.yml
vendored
1
.github/workflows/pr-docs.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
types: [review_requested, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docsLinter:
|
docsLinter:
|
||||||
|
|
1
.github/workflows/pr-linter.yml
vendored
1
.github/workflows/pr-linter.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
types: [review_requested, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
linter:
|
linter:
|
||||||
|
|
7
.github/workflows/pr-python310.yml
vendored
7
.github/workflows/pr-python310.yml
vendored
|
@ -3,12 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
push:
|
types: [review_requested, ready_for_review]
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
- sanic/*
|
|
||||||
- tests/*
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
testPy39:
|
testPy39:
|
||||||
|
|
7
.github/workflows/pr-python37.yml
vendored
7
.github/workflows/pr-python37.yml
vendored
|
@ -3,12 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
push:
|
types: [review_requested, ready_for_review]
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
- sanic/*
|
|
||||||
- tests/*
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
testPy37:
|
testPy37:
|
||||||
|
|
7
.github/workflows/pr-python38.yml
vendored
7
.github/workflows/pr-python38.yml
vendored
|
@ -3,12 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
push:
|
types: [review_requested, ready_for_review]
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
- sanic/*
|
|
||||||
- tests/*
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
testPy38:
|
testPy38:
|
||||||
|
|
7
.github/workflows/pr-python39.yml
vendored
7
.github/workflows/pr-python39.yml
vendored
|
@ -3,12 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
push:
|
types: [review_requested, ready_for_review]
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
- sanic/*
|
|
||||||
- tests/*
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
testPy39:
|
testPy39:
|
||||||
|
|
1
.github/workflows/pr-type-check.yml
vendored
1
.github/workflows/pr-type-check.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
types: [review_requested, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
typeChecking:
|
typeChecking:
|
||||||
|
|
1
.github/workflows/pr-windows.yml
vendored
1
.github/workflows/pr-windows.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
types: [review_requested, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
testsOnWindows:
|
testsOnWindows:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user