This repository has been archived by the owner on Jan 29, 2025. It is now read-only.
Fixed models.py and piechart.py (#110) #17
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: Feature Test Cases | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install pytest | |
run: | | |
python -m pip install pytest | |
- name: Run pytest | |
run: | | |
PYTHONPATH=. pytest --maxfail=1 --disable-warnings |