Skip to content

Commit

Permalink
Merge pull request #159 from EmbroidePy/unittests
Browse files Browse the repository at this point in the history
Add in unittest/funding info
  • Loading branch information
tatarize authored Jul 3, 2023
2 parents 6fd941f + c364280 commit 1f8d3e9
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [tatarize]
73 changes: 73 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Unittest

on:
push:
branches: [master, dev]
paths:
- '**.py'
- '.github/workflows/unittests.yml'
pull_request:
branches: [master]
paths:
- '**.py'
- '.github/workflows/unittests.yml'

concurrency:
group: unittests-${{ github.ref }}
cancel-in-progress: true

defaults:
run:
shell: bash

jobs:
unittests:

name: ${{ matrix.os }}+py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2019, macos-11]
python-version: [3.11]

steps:

- name: Checkout ${{ github.ref }}
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Identify precise Python version
id: full-python-version
shell: bash
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")

- name: Cache Python env for ${{ matrix.os }}-py${{ steps.full-python-version.outputs.version }}
uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
key: new-${{ matrix.os }}-py${{ steps.full-python-version.outputs.version }}-${{ hashFiles('requirements.txt') }}

- name: List environment
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
JOB_CONTEXT: ${{ toJSON(job) }}
STEPS_CONTEXT: ${{ toJSON(steps) }}
RUNNER_CONTEXT: ${{ toJSON(runner) }}
STRATEGY_CONTEXT: ${{ toJSON(strategy) }}
MATRIX_CONTEXT: ${{ toJSON(matrix) }}
run: |
pip list
env
- name: Run Unittests
run: |
python -m unittest discover test -v
if ${{ matrix.experimental }} == true; then
exit 0
fi
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Software Development :: Libraries :: Python Modules'
Expand Down

0 comments on commit 1f8d3e9

Please sign in to comment.