Disable MacOS Tests (#2151)
* Update pr-python37.yml * Update workflows
This commit is contained in:
parent
b1f31f2eeb
commit
16875b1f41
18
.github/workflows/pr-python-pypy.yml
vendored
18
.github/workflows/pr-python-pypy.yml
vendored
|
@ -3,13 +3,13 @@ on:
|
|||
workflow_dispatch:
|
||||
inputs:
|
||||
tox-env:
|
||||
description: 'Tox Env to run on the PyPy Infra'
|
||||
description: "Tox Env to run on the PyPy Infra"
|
||||
required: false
|
||||
default: 'pypy37'
|
||||
default: "pypy37"
|
||||
pypy-version:
|
||||
description: 'Version of PyPy to use'
|
||||
description: "Version of PyPy to use"
|
||||
required: false
|
||||
default: 'pypy-3.7'
|
||||
default: "pypy-3.7"
|
||||
jobs:
|
||||
testPyPy:
|
||||
name: ut-${{ matrix.config.tox-env }}-${{ matrix.os }}
|
||||
|
@ -17,9 +17,13 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
# os: [ubuntu-latest, macos-latest]
|
||||
os: [ubuntu-latest]
|
||||
config:
|
||||
- { python-version: "${{ github.event.inputs.pypy-version }}", tox-env: "${{ github.event.inputs.tox-env }}" }
|
||||
- {
|
||||
python-version: "${{ github.event.inputs.pypy-version }}",
|
||||
tox-env: "${{ github.event.inputs.tox-env }}",
|
||||
}
|
||||
steps:
|
||||
- name: Checkout the Repository
|
||||
uses: actions/checkout@v2
|
||||
|
@ -34,4 +38,4 @@ jobs:
|
|||
action: tests
|
||||
test-additional-args: "-e=${{ matrix.config.tox-env }}"
|
||||
experimental-ignore-error: "true"
|
||||
command-timeout: '600000'
|
||||
command-timeout: "600000"
|
||||
|
|
3
.github/workflows/pr-python37.yml
vendored
3
.github/workflows/pr-python37.yml
vendored
|
@ -14,7 +14,8 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
# os: [ubuntu-latest, macos-latest]
|
||||
os: [ubuntu-latest]
|
||||
config:
|
||||
- { python-version: 3.7, tox-env: py37 }
|
||||
- { python-version: 3.7, tox-env: py37-no-ext }
|
||||
|
|
9
.github/workflows/pr-python38.yml
vendored
9
.github/workflows/pr-python38.yml
vendored
|
@ -14,10 +14,11 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
# os: [ubuntu-latest, macos-latest]
|
||||
os: [ubuntu-latest]
|
||||
config:
|
||||
- { python-version: 3.8, tox-env: py38}
|
||||
- { python-version: 3.8, tox-env: py38-no-ext}
|
||||
- { python-version: 3.8, tox-env: py38 }
|
||||
- { python-version: 3.8, tox-env: py38-no-ext }
|
||||
steps:
|
||||
- name: Checkout the Repository
|
||||
uses: actions/checkout@v2
|
||||
|
@ -31,4 +32,4 @@ jobs:
|
|||
test-infra-version: latest
|
||||
action: tests
|
||||
test-additional-args: "-e=${{ matrix.config.tox-env }}"
|
||||
test-failure-retry: "3"
|
||||
test-failure-retry: "3"
|
||||
|
|
17
.github/workflows/pr-python39.yml
vendored
17
.github/workflows/pr-python39.yml
vendored
|
@ -14,10 +14,21 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
# os: [ubuntu-latest, macos-latest]
|
||||
os: [ubuntu-latest]
|
||||
config:
|
||||
- { python-version: 3.9, tox-env: py39, ignore-error-flake: "false", command-timeout: '0'}
|
||||
- { python-version: 3.9, tox-env: py39-no-ext, ignore-error-flake: "true", command-timeout: '600000'}
|
||||
- {
|
||||
python-version: 3.9,
|
||||
tox-env: py39,
|
||||
ignore-error-flake: "false",
|
||||
command-timeout: "0",
|
||||
}
|
||||
- {
|
||||
python-version: 3.9,
|
||||
tox-env: py39-no-ext,
|
||||
ignore-error-flake: "true",
|
||||
command-timeout: "600000",
|
||||
}
|
||||
steps:
|
||||
- name: Checkout the Repository
|
||||
uses: actions/checkout@v2
|
||||
|
|
Loading…
Reference in New Issue
Block a user