Skip to content

Commit

Permalink
workflow corrected with folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasrebra committed Jul 12, 2024
1 parent ffc102b commit a737165
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
cd YOLO_research/scripts/Yolov1_package
cd scripts/Yolov1_package
python -m pip install --upgrade pip
pip install .
- name: Lint with flake8
run: |
cd YOLO_research/scripts/Yolov1_package
cd scripts/Yolov1_package
flake8 Yolov1_package --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 Yolov1_package --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
cd YOLO_research/scripts/Yolov1_package
cd scripts/Yolov1_package
pytest tests

0 comments on commit a737165

Please sign in to comment.