-
Notifications
You must be signed in to change notification settings - Fork 344
/
Makefile
47 lines (36 loc) · 1.27 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.PHONY: clean build deploy install publish
# Project settings
PROJECT = webpack-loader
# Virtual environment settings
ENV ?= venv
REPOSITORY ?= pypi
requirements = -r requirements-dev.txt
all: install build
@activate_venv = . $(ENV)/bin/activate
@check_if_venv_active = $(shell python -c 'import sys; print ("1" if sys.prefix != sys.base_prefix else "0")')
@activate_venv_if_not_active = $(if $(filter 1,$(check_if_venv_active)),$(activate_venv),)
clean:
@echo "Cleaning..."
@find webpack_loader/ -name '*.pyc' -delete
@rm -rf ./build ./*egg* ./.coverage ./dist
build: clean
@$(activate_venv_if_not_active)
@echo "Building..."
@pip install -r requirements-dev.txt
@python setup.py sdist bdist_wheel --universal
install:
@echo "Installing build dependencies"
@[ ! -d $(ENV)/ ] && python3 -m venv $(ENV)/ || :
@$(ENV)/bin/pip install $(requirements)
@cd tests; npm i
test:
@$(activate_venv_if_not_active)
@echo "Running tests..."
@cd tests; coverage run --source=webpack_loader manage.py test
@cd tests_webpack5; coverage run --source=webpack_loader manage.py test
publish: build
@echo "Publishing to $(REPOSITORY)..."
@$(ENV)/bin/twine upload -r $(REPOSITORY) dist/*
register:
@echo "Registering package on $(REPOSITORY)..."
@$(ENV)/bin/twine register -r $(REPOSITORY)