Skip to content

Commit

Permalink
Merge pull request #19 from NCSU-SE-2024/workflow1
Browse files Browse the repository at this point in the history
Workflow1
  • Loading branch information
anish-dhage authored Oct 31, 2024
2 parents a87917b + a051937 commit e6a26b2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ jobs:
# Exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Create config.ini from secret
env:
CONFIG_INI: ${{ secrets.CONFIG_INI }}
run: |
echo "$CONFIG_INI" > tests/config.ini
- name: Run Unit Tests with unittest
run: |
python -m unittest discover tests -p "test_app.py" # Change 'tests' to your test directory if different

0 comments on commit e6a26b2

Please sign in to comment.