2021-04-06 21:32:01 +01:00
|
|
|
name: Python 3.9 Tests
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-07-09 07:21:39 +01:00
|
|
|
- current-release
|
2022-01-06 10:40:52 +00:00
|
|
|
- "*LTS"
|
2021-12-05 22:05:07 +00:00
|
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
2021-04-06 21:32:01 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
testPy39:
|
2021-12-05 22:05:07 +00:00
|
|
|
if: github.event.pull_request.draft == false
|
2021-04-06 21:32:01 +01:00
|
|
|
name: ut-${{ matrix.config.tox-env }}-${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
2021-10-27 09:55:34 +01:00
|
|
|
fail-fast: true
|
2021-04-06 21:32:01 +01:00
|
|
|
matrix:
|
2021-06-01 08:23:52 +01:00
|
|
|
# os: [ubuntu-latest, macos-latest]
|
|
|
|
os: [ubuntu-latest]
|
2021-04-06 21:32:01 +01:00
|
|
|
config:
|
2021-06-01 08:23:52 +01:00
|
|
|
- {
|
|
|
|
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",
|
|
|
|
}
|
2021-04-06 21:32:01 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout the Repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
id: checkout-branch
|
|
|
|
|
|
|
|
- name: Run Unit Tests
|
|
|
|
uses: harshanarayana/custom-actions@main
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.config.python-version }}
|
|
|
|
test-infra-tool: tox
|
|
|
|
test-infra-version: latest
|
|
|
|
action: tests
|
|
|
|
test-additional-args: "-e=${{ matrix.config.tox-env }},-vv=''"
|
|
|
|
experimental-ignore-error: "${{ matrix.config.ignore-error-flake }}"
|
|
|
|
command-timeout: "${{ matrix.config.command-timeout }}"
|
|
|
|
test-failure-retry: "3"
|