Skip to content

Commit

Permalink
testing only once
Browse files Browse the repository at this point in the history
  • Loading branch information
alkidbaci committed Feb 27, 2025
1 parent 7fd6475 commit f2634cf
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,16 @@ jobs:
run: |
ruff check ontolearn/learners/ --line-length=200
- name: Test with pytest
- name: Get external files
run: |
wget https://files.dice-research.org/projects/Ontolearn/KGs.zip
wget https://files.dice-research.org/projects/Ontolearn/LPs.zip
wget https://files.dice-research.org/projects/Ontolearn/CLIP/CLIPData.zip
wget https://files.dice-research.org/projects/NCES/NCES_Ontolearn_Data/NCESData.zip
unzip KGs.zip && unzip LPs.zip && unzip NCESData.zip && unzip CLIPData.zip
pytest -p no:warnings -x
- name: Coverage report
- name: Testing and coverage report
run: |
pip install coverage
coverage run -m pytest
coverage report -m
coverage run -m pytest -p no:warnings -x
coverage report -m

0 comments on commit f2634cf

Please sign in to comment.