First working draft of A0 #23
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: Unit Tests for zoix.py | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Fault Test Cases | |
run: | | |
cd src/unit_tests | |
python3 -m unittest test_zoix.FaultTest | |
- name: CSVFaultReport Test Cases | |
run: | | |
cd src/unit_tests | |
python3 -m unittest test_zoix.CSVFaultReportTest | |
- name: ZoixInvoker Test Cases | |
run: | | |
cd src/unit_tests | |
python3 -m unittest test_zoix.ZoixInvokerTest | |
- name: All Test Cases | |
run: | | |
cd src/unit_tests | |
python3 -m unittest test_zoix |