mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
59 lines
1.7 KiB
YAML
59 lines
1.7 KiB
YAML
name: Unit Testing
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
jobs:
|
|
description: 'Space separated list of 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
|
|
artifact:
|
|
description: "Generate unit test report with junitxml and upload results as an artifact."
|
|
required: false
|
|
default: ''
|
|
type: string
|
|
|
|
jobs:
|
|
|
|
UnitTesting:
|
|
name: ${{ matrix.icon }} Unit Tests using Python ${{ matrix.python }}
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include: ${{ fromJson(inputs.jobs) }}
|
|
|
|
steps:
|
|
- name: ⏬ Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: 🐍 Setup Python ${{ matrix.python }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
|
|
- name: 🔧 Install dependencies
|
|
run: |
|
|
python -m pip install -U pip
|
|
python -m pip install ${{ inputs.requirements }}
|
|
|
|
- name: ☑ Run unit tests
|
|
run: |
|
|
[ 'x${{ inputs.artifact }}' != 'x' ] && PYTEST_ARGS='--junitxml=TestReport.xml' || unset PYTEST_ARGS
|
|
python -m pytest -rA tests/unit $PYTEST_ARGS --color=yes
|
|
|
|
- name: 📤 Upload 'TestReport.xml' artifact
|
|
if: inputs.TestReport == 'true'
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ inputs.artifact }}-${{ matrix.python }}
|
|
path: TestReport.xml
|
|
if-no-files-found: error
|
|
retention-days: 1
|