Skip to content

Commit

Permalink
Use shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekMaggio committed Apr 8, 2024
1 parent e67828b commit 589a8b8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions performance-metrics/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@ include ../scripts/python.mk

.PHONY: lint
lint:
pipenv run python -m black --check .
pipenv run python -m flake8 .
pipenv run python -m mypy .
$(python) -m black --check .
$(python) -m flake8 .
$(python) -m mypy .

.PHONY: format
format:
pipenv run python -m black .
$(python) -m black .

.PHONY: setup
setup:
pipenv sync --dev
$(pipenv) sync --dev

.PHONY: teardown
teardown:
pipenv --rm
$(pipenv) --rm

.PHONY: clean
clean:
rm -rf build dist *.egg-info .mypy_cache .pytest_cache src/performance_metrics.egg-info

.PHONY: wheel
wheel:
pipenv run python setup.py $(wheel_opts) bdist_wheel
$(python) setup.py $(wheel_opts) bdist_wheel
rm -rf build

0 comments on commit 589a8b8

Please sign in to comment.