Add a simple unit test framework with tox
and pytest
#4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Unit Test via Pytest | |
on: | |
push: | |
branches: ["main"] | |
tags-ignore: ["**"] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9.20"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox>=4.19 | |
# - name: Check for lint | |
# run: | | |
# cd backend | |
# tox -e format,isort,lint | |
- name: Run unit tests | |
run: | | |
cd backend | |
tox -e unit | |
- name: Publish coverage data | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Coverage for ${{ github.event.head_commit.id }} | |
path: .tox/unit/tmp/coverage.db | |
if-no-files-found: warn | |
retention-days: 30 |