Disable MacOS Tests (#2151)

* Update pr-python37.yml

* Update workflows
This commit is contained in:
Adam Hopkins 2021-06-01 10:23:52 +03:00 committed by GitHub
parent b1f31f2eeb
commit 16875b1f41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 15 deletions

View File

@ -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"

View File

@ -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 }

View File

@ -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

View File

@ -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