Skip to content

Commit

Permalink
Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Nov 4, 2021
1 parent 75de3ea commit 4d5ef4a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
@@ -0,0 +1,20 @@
PRJ = pymlconf
PIP = pip3

.PHONY: env
env:
$(PIP) install -r requirements-dev.txt
$(PIP) install -e .

.PHONY: cover
cover:
pytest --cov=$(PRJ) tests


.PHONY: lint
lint:
pylama

.PHONY: dist
dist:
python setup.py sdist

0 comments on commit 4d5ef4a

Please sign in to comment.