Skip to content

Commit

Permalink
build(make): Add helper target and install all optionals by default (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jesse-c committed May 1, 2024
1 parent 5f88658 commit 54b8ea9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
.PHONY: install-dev
install-dev:
pip install -r requirements/dev.txt

.PHONY: install
install:
pip install -e .
pip install -e .[all]

.PHONY: test
test:
Expand Down Expand Up @@ -60,5 +64,3 @@ check_licenses:
tox-env=default
repl:
env COMMAND="python" tox -e $(tox-env)


0 comments on commit 54b8ea9

Please sign in to comment.