Skip to content

Commit

Permalink
Issue #141: revert requirements.txt installation validation
Browse files Browse the repository at this point in the history
  • Loading branch information
SonOfLope authored Oct 3, 2024
1 parent b97ea71 commit eb94acd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/workflow-lint-test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install ruff==0.1.0
pip install -r requirements.txt
if [ -f requirements.txt ]; then \
pip install -r requirements.txt; \
fi
pip install pytest pytest-cov # for coverage
- name: Lint with ruff
Expand Down

0 comments on commit eb94acd

Please sign in to comment.