Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sidchaini committed Feb 7, 2024
1 parent 5dfabe4 commit a5f2e98
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ jobs:
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install distclassipy
python3 -m pip install pytest
python3 -m pip install distclassipy pytest pytest-cov
- name: Test classifier with PyTest
run: |
python3 -m pytest tests/test_classifier.py
# --cov=distclassipy.classifier --cov-report term-missing
python3 -m pytest tests/test_classifier.py --cov=distclassipy.classifier --cov-report term-missing
- name: Test distances with PyTest
run: |
python3 -m pytest tests/test_distances.py
# --cov=distclassipy.distances --cov-report term-missing
python3 -m pytest tests/test_distances.py --cov=distclassipy.distances --cov-report term-missing

0 comments on commit a5f2e98

Please sign in to comment.