Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Biagiocu99 authored May 19, 2024
1 parent 2529a17 commit ad47950
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,12 @@ jobs:
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
- name: Set up PYTHONPATH
run: |
export PYTHONPATH=$PYTHONPATH:$(pwd)/src
- name: Lint with pylint
run: |
pylint src
- name: Test with pytest
run: |
pytest --cov src tests/
pytest --cov=src tests/

0 comments on commit ad47950

Please sign in to comment.