Skip to content

Commit

Permalink
Add unit tests for all applications and core modules (#147)
Browse files Browse the repository at this point in the history
Co-authored-by: Greshma Shaji<[email protected]>
  • Loading branch information
Marvmann authored Dec 6, 2024
1 parent 34f803c commit 5eb49f4
Show file tree
Hide file tree
Showing 71 changed files with 7,921 additions and 3,619 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ 'main', 'dev' ]

jobs:
lint:
test:
name: Run Unit Tests
runs-on: [ 'ubuntu-latest' ]
env:
Expand All @@ -33,7 +33,14 @@ jobs:
- name: Install Dependencies
run: pip install -r .settings/requirements_full.txt

- name: Run tests with unittest
run: python -m unittest discover .
- name: Run Unit Tests
run: python -m unittest discover . > unittest_results.log

- name: Upload Test Logs
if: always()
uses: actions/upload-artifact@v3
with:
name: unittest-logs
path: unittest_results.log


Loading

0 comments on commit 5eb49f4

Please sign in to comment.