-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
82 lines (68 loc) · 1.92 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Required executables
ifeq (, $(shell which python3))
$(error "No python3 on PATH.")
endif
ifeq (, $(shell which pipenv))
$(error "No pipenv on PATH.")
endif
# Suppress warning if pipenv is started inside .venv
export PIPENV_VERBOSITY = 1
# Use relative .venv folder instead of home-folder based
export PIPENV_VENV_IN_PROJECT = 1
# Ignore existing venvs
export PIPENV_IGNORE_VIRTUALENVS = 0
# Make sure we are running with an explicit encoding
export LC_ALL = C
export LANG = C.UTF-8
# Set configuration folder to venv
export PYPE_CONFIG_FOLDER = $(shell pwd)/.venv/.pype-cli
# Process variables
VERSION = $(shell python3 setup.py --version)
PY_FILES := setup.py octo_bots_python tests
all: venv build
venv:
@echo Initialize virtualenv, i.e., install required packages etc.
pipenv sync --dev
install:
pipenv install --dev
update:
pipenv update --dev
shell:
@echo Initialize virtualenv and open a new shell using it
pipenv shell
clean:
@echo Clean project base
find . -type d \
-name ".tox" -o \
-name ".ropeproject" -o \
-name ".mypy_cache" -o \
-name ".pytest_cache" -o \
-name "__pycache__" -o \
-iname "*.egg-info" -o \
-name "build" -o \
-name "dist" \
-path ./.venv -prune \
|xargs rm -rfv
test:
@echo Run all tests in default virtualenv
pipenv run py.test tests
testall:
@echo Run all tests against all virtualenvs defined in tox.ini
pipenv run tox -c setup.cfg tests
isort:
@echo Check for incorrectly sorted imports
pipenv run isort --check-only $(PY_FILES)
isort-apply:
@echo Check for incorrectly sorted imports
pipenv run isort $(PY_FILES)
build: test isort
@echo Run setup.py-based build process to package application
pipenv run python setup.py bdist_wheel
publish:
@echo Release to pypi.org and create git tag
pipenv run twine upload dist/*
git tag -a $(VERSION) -m "Version $(VERSION)"
git push --tags
run:
@echo Execute octo-bots-python directly
pipenv run python -m octo_bots_python.bots_executor