Skip to content

Commit

Permalink
install target
Browse files Browse the repository at this point in the history
  • Loading branch information
rsalmei committed Apr 14, 2020
1 parent b47f5cd commit 86791eb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: clean build release
.PHONY: all install clean build release

# coverage related
SRC = alive_progress
Expand All @@ -7,6 +7,9 @@ COV = --cov=$(SRC) --cov-branch --cov-report=term-missing
all:
@grep -E "^\w+:" makefile | cut -d: -f1

install:
pip install -r requirements/dev.txt -r requirements/test.txt -e .

clean: clean-build clean-pyc

clean-build:
Expand Down

0 comments on commit 86791eb

Please sign in to comment.