mirror of
https://github.com/infeeeee/dyn2py
synced 2025-12-16 22:16:18 +01:00
Reusable tests
This commit is contained in:
25
.github/workflows/test.yml
vendored
Normal file
25
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
python-version:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
os:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
reusable_workflow_job:
|
||||||
|
runs-on: ${{ inputs.os }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Set up Python ${{ inputs.python-version }}
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: ${{ inputs.python-version }}
|
||||||
|
- name: Install deps
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install .
|
||||||
|
- name: Test
|
||||||
|
run: python -m unittest discover -v -s ./tests -p "test_*.py"
|
||||||
22
.github/workflows/unittests.yml
vendored
22
.github/workflows/unittests.yml
vendored
@@ -14,21 +14,9 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest]
|
os: [ubuntu-latest, windows-latest]
|
||||||
python-version: [3.8, 3.9, "3.10", 3.11]
|
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
|
|
||||||
steps:
|
uses: ./.github/workflows/test.yml
|
||||||
- uses: actions/checkout@v3
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
os: ${{ matrix.os }}
|
||||||
uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: ${{ matrix.python-version }}
|
|
||||||
|
|
||||||
- name: Install deps
|
|
||||||
run: |
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install .
|
|
||||||
|
|
||||||
- name: Test
|
|
||||||
run: python -m unittest discover -v -s ./tests -p "test_*.py"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user