mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
133 lines
6.0 KiB
YAML
133 lines
6.0 KiB
YAML
# ==================================================================================================================== #
|
|
# Authors: #
|
|
# Patrick Lehmann #
|
|
# Unai Martinez-Corral #
|
|
# #
|
|
# ==================================================================================================================== #
|
|
# Copyright 2020-2022 The pyTooling Authors #
|
|
# #
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
|
# you may not use this file except in compliance with the License. #
|
|
# You may obtain a copy of the License at #
|
|
# #
|
|
# http://www.apache.org/licenses/LICENSE-2.0 #
|
|
# #
|
|
# Unless required by applicable law or agreed to in writing, software #
|
|
# distributed under the License is distributed on an "AS IS" BASIS, #
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
|
|
# See the License for the specific language governing permissions and #
|
|
# limitations under the License. #
|
|
# #
|
|
# SPDX-License-Identifier: Apache-2.0 #
|
|
# ==================================================================================================================== #
|
|
name: Unit Testing
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
jobs:
|
|
description: 'JSON list with environment fields, telling the system and Python versions to run tests with.'
|
|
required: true
|
|
type: string
|
|
requirements:
|
|
description: 'Python dependencies to be installed through pip.'
|
|
required: false
|
|
default: '-r tests/requirements.txt'
|
|
type: string
|
|
pacboy:
|
|
description: 'MSYS2 dependencies to be installed through pacboy (pacman).'
|
|
required: false
|
|
default: >-
|
|
python-pip:p
|
|
python-wheel:p
|
|
python-coverage:p
|
|
python-lxml:p
|
|
type: string
|
|
mingw_requirements:
|
|
description: 'Override Python dependencies to be installed through pip on MSYS2 (MINGW64) only.'
|
|
required: false
|
|
default: ''
|
|
type: string
|
|
unittest_directory:
|
|
description: 'Path to the directory containing unit tests.'
|
|
required: false
|
|
default: 'tests/unit'
|
|
type: string
|
|
artifact:
|
|
description: "Generate unit test report with junitxml and upload results as an artifact."
|
|
required: false
|
|
default: ''
|
|
type: string
|
|
|
|
jobs:
|
|
|
|
UnitTesting:
|
|
name: ${{ matrix.sysicon }} ${{ matrix.pyicon }} Unit Tests using Python ${{ matrix.python }}
|
|
runs-on: ${{ matrix.runs-on }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include: ${{ fromJson(inputs.jobs) }}
|
|
|
|
defaults:
|
|
run:
|
|
shell: ${{ matrix.shell }}
|
|
|
|
steps:
|
|
- name: ⏬ Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: '🟦 Setup MSYS2'
|
|
if: matrix.system == 'msys2'
|
|
uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: MINGW64
|
|
update: true
|
|
pacboy: ${{ inputs.pacboy }}
|
|
|
|
- name: 🐍 Setup Python ${{ matrix.python }}
|
|
if: matrix.system != 'msys2'
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
|
|
- name: ⚙️ Update pip
|
|
run: python -m pip install -U pip
|
|
|
|
- name: 🔧 Install wheel and pip dependencies
|
|
if: matrix.system != 'msys2'
|
|
run: |
|
|
python -m pip install -U wheel
|
|
python -m pip install ${{ inputs.requirements }}
|
|
|
|
- name: 🔧 Install pip dependencies
|
|
if: matrix.system == 'msys2'
|
|
run: |
|
|
if [ 'x${{ inputs.mingw_requirements }}' != 'x' ]; then
|
|
python -m pip install ${{ inputs.mingw_requirements }}
|
|
else
|
|
python -m pip install ${{ inputs.requirements }}
|
|
fi
|
|
|
|
- name: ☑ Run unit tests
|
|
if: matrix.system == 'windows'
|
|
run: |
|
|
$PYTEST_ARGS = if ("${{ inputs.artifact }}".length -gt 0) { "--junitxml=TestReport.xml" } else { "" }
|
|
python -m pytest -rA ${{ inputs.unittest_directory }} $PYTEST_ARGS --color=yes
|
|
|
|
- name: ☑ Run unit tests
|
|
if: matrix.system != 'windows'
|
|
run: |
|
|
[ 'x${{ inputs.artifact }}' != 'x' ] && PYTEST_ARGS='--junitxml=TestReport.xml' || unset PYTEST_ARGS
|
|
python -m pytest -rA ${{ inputs.unittest_directory }} $PYTEST_ARGS --color=yes
|
|
|
|
- name: 📤 Upload 'TestReport.xml' artifact
|
|
if: inputs.artifact != ''
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ inputs.artifact }}-${{ matrix.system }}-${{ matrix.python }}
|
|
path: TestReport.xml
|
|
if-no-files-found: error
|
|
retention-days: 1
|