Skip to content

Commit

Permalink
Remove venv usage from main Makefile targets
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvine committed Dec 20, 2022
1 parent aeedeb8 commit 13ff1fd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ venv:
venv/bin/pip install -r requirements.txt

inspections-init:
venv/bin/python scripts/00-fetch-inspection-list.py
python scripts/00-fetch-inspection-list.py

inspections-refresh:
venv/bin/python scripts/01-refresh-inspection-list.py
python scripts/01-refresh-inspection-list.py

inspections-download:
venv/bin/python scripts/02-download-inspection-pdfs.py
python scripts/02-download-inspection-pdfs.py

inspections: inspections-init inspections-refresh inspections-download


format:
venv/bin/black scripts
venv/bin/isort scripts
black scripts
isort scripts

lint:
venv/bin/black --check scripts
venv/bin/isort --check scripts
venv/bin/flake8 scripts
black --check scripts
isort --check scripts
flake8 scripts

0 comments on commit 13ff1fd

Please sign in to comment.