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:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
tox-env:
|
tox-env:
|
||||||
description: 'Tox Env to run on the PyPy Infra'
|
description: "Tox Env to run on the PyPy Infra"
|
||||||
required: false
|
required: false
|
||||||
default: 'pypy37'
|
default: "pypy37"
|
||||||
pypy-version:
|
pypy-version:
|
||||||
description: 'Version of PyPy to use'
|
description: "Version of PyPy to use"
|
||||||
required: false
|
required: false
|
||||||
default: 'pypy-3.7'
|
default: "pypy-3.7"
|
||||||
jobs:
|
jobs:
|
||||||
testPyPy:
|
testPyPy:
|
||||||
name: ut-${{ matrix.config.tox-env }}-${{ matrix.os }}
|
name: ut-${{ matrix.config.tox-env }}-${{ matrix.os }}
|
||||||
|
@ -17,9 +17,13 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest]
|
# os: [ubuntu-latest, macos-latest]
|
||||||
|
os: [ubuntu-latest]
|
||||||
config:
|
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:
|
steps:
|
||||||
- name: Checkout the Repository
|
- name: Checkout the Repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -34,4 +38,4 @@ jobs:
|
||||||
action: tests
|
action: tests
|
||||||
test-additional-args: "-e=${{ matrix.config.tox-env }}"
|
test-additional-args: "-e=${{ matrix.config.tox-env }}"
|
||||||
experimental-ignore-error: "true"
|
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:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest]
|
# os: [ubuntu-latest, macos-latest]
|
||||||
|
os: [ubuntu-latest]
|
||||||
config:
|
config:
|
||||||
- { python-version: 3.7, tox-env: py37 }
|
- { python-version: 3.7, tox-env: py37 }
|
||||||
- { python-version: 3.7, tox-env: py37-no-ext }
|
- { python-version: 3.7, tox-env: py37-no-ext }
|
||||||
|
|
7
.github/workflows/pr-python38.yml
vendored
7
.github/workflows/pr-python38.yml
vendored
|
@ -14,10 +14,11 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest]
|
# os: [ubuntu-latest, macos-latest]
|
||||||
|
os: [ubuntu-latest]
|
||||||
config:
|
config:
|
||||||
- { python-version: 3.8, tox-env: py38}
|
- { python-version: 3.8, tox-env: py38 }
|
||||||
- { python-version: 3.8, tox-env: py38-no-ext}
|
- { python-version: 3.8, tox-env: py38-no-ext }
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout the Repository
|
- name: Checkout the Repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
17
.github/workflows/pr-python39.yml
vendored
17
.github/workflows/pr-python39.yml
vendored
|
@ -14,10 +14,21 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest]
|
# os: [ubuntu-latest, macos-latest]
|
||||||
|
os: [ubuntu-latest]
|
||||||
config:
|
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:
|
steps:
|
||||||
- name: Checkout the Repository
|
- name: Checkout the Repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user