Skip to content

Commit

Permalink
more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
manoskary committed Jul 18, 2024
1 parent 695fc75 commit b686f38
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/unit_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
shell: bash
- name: Install package with pip
run:
run: |
pip freeze
pip install .
shell: bash
- name: Test with pytest
run: |
python -m unittest discover ./tests/ 'test*.py'
shell: bash

0 comments on commit b686f38

Please sign in to comment.