Skip to content

Commit

Permalink
Add setup-ci target to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Oct 24, 2021
1 parent 40919c1 commit c02042e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ release:
@cd $(PKG_BUILD_DIR) && $(PYTHON) setup.py release --sign --search-dir $(PACKAGE)
@make clean

.PHONY: setup-ci
setup-ci:
@$(PYTHON) -m pip install -q --disable-pip-version-check --upgrade tox

.PHONY: setup
setup:
@$(PYTHON) -m pip install -q --disable-pip-version-check --upgrade -e .[test] releasecmd tox
setup: setup-ci
@$(PYTHON) -m pip install -q --disable-pip-version-check --upgrade -e .[test] releasecmd
@$(PYTHON) -m pip check

0 comments on commit c02042e

Please sign in to comment.