File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed
Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 11include header.mk
22
3- PACKAGES = cli
3+ PACKAGES = core cli
44export ABS_ROOT_PATH =$(shell pwd)
55
66.PHONY : packages $(PACKAGES )
@@ -22,10 +22,6 @@ BUMPVERSIONPACKAGES = $(PACKAGES:%=bumpversion-%)
2222help : # # 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-
2925package-install : $(INSTALLPACKAGES ) # # Installs all packages without dev dependencies
3026$(INSTALLPACKAGES ) :
3127 $(MAKE ) -C $(@:package-install-%=% ) package-install
Original file line number Diff line number Diff line change @@ -25,13 +25,8 @@ clean-test: ## remove test and coverage artifacts
2525clean-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-
3328package-install : # # install the package without dev dependencies
34- pip install .
29+ pip install -e .
3530
3631test : # # run tests quickly with the default Python
3732 python -m pytest -m unit
You can’t perform that action at this time.
0 commit comments