Skip to content

Commit 6752638

Browse files
tarekbadrshafrittoli
authored andcommitted
update make file
1 parent bf72bba commit 6752638

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include header.mk
22

3-
PACKAGES = cli
3+
PACKAGES = core cli
44
export ABS_ROOT_PATH=$(shell pwd)
55

66
.PHONY: packages $(PACKAGES)
@@ -22,10 +22,6 @@ BUMPVERSIONPACKAGES = $(PACKAGES:%=bumpversion-%)
2222
help: ## Prints this help text
2323
@python -c "$$PRINT_HELP_PYSCRIPT" < Makefile
2424

25-
init: $(INITPACKAGES) ## Installs all packages in editable mode including dev dependencies
26-
$(INITPACKAGES):
27-
$(MAKE) -C $(@:init-%=%) init
28-
2925
package-install: $(INSTALLPACKAGES) ## Installs all packages without dev dependencies
3026
$(INSTALLPACKAGES):
3127
$(MAKE) -C $(@:package-install-%=%) package-install

targets.mk

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,8 @@ clean-test: ## remove test and coverage artifacts
2525
clean-mypy: ## remove MyPy cache files
2626
rm -fr .mypy_cache/
2727

28-
29-
init: clean ## install the package in editable mode including dev dependencies
30-
pip install -e .[dev]
31-
pre-commit install
32-
3328
package-install: ## install the package without dev dependencies
34-
pip install .
29+
pip install -e .
3530

3631
test: ## run tests quickly with the default Python
3732
python -m pytest -m unit

0 commit comments

Comments
 (0)