-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
38 lines (27 loc) · 1.06 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
.PHONY: setup test lint run
#################################################################################
# GLOBALS #
#################################################################################
PROJECT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
PROFILE = default
PROJECT_NAME = myprojectName
PYTHON_INTERPRETER = python3
# Alias python paths
PYTHON_ENV := pipenv run python
PYTEST := pipenv run pytest
LINTER := pipenv run flake8
#################################################################################
# COMMANDS #
#################################################################################
# Makefile chains the operations so setup -> lint -> test -> run
setup:
$(PYTHON_INTERPRETER) -m pip install --upgrade pip
$(PYTHON_INTERPRETER) -m pip install pipenv
pipenv install
lint: setup
$(LINTER) src
$(LINTER) test
test: lint
$(PYTEST) test
run: test
$(PYTHON_ENV) src/main.py