Skip to content

Initial version of unittest (#10) #11

Initial version of unittest (#10)

Initial version of unittest (#10) #11

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
unittest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python }}
- name: Install pytest and parameterized
run: pip install pytest parameterized
- name: Run test
run: python -m unittest test_tf.py