-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (35 loc) · 958 Bytes
/
Makefile
File metadata and controls
45 lines (35 loc) · 958 Bytes
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
SHELL = /bin/bash
SCRIPTS="./scripts"
.PHONY: help setup test test_ci check_code_style check_static_types
help:
@ echo ""
@ echo "Usage:"
@ echo " setup: Setup Project and install requirements"
@ echo " test: Run project tests"
@ echo " test_ci: Run project tests for CI execution"
@ echo " check_code_style: Run Code Style Checks"
@ echo " check_static_types: Run Static Types Checks"
@ echo " install: Install local package in edit mode"
@ echo " publish: Publish the library to pypi"
@ echo ""
check_code_style:
@ chmod +x $(SCRIPTS)/*
@ $(SCRIPTS)/check_code_style
check_static_types:
@ chmod +x $(SCRIPTS)/*
@ $(SCRIPTS)/check_static_types
install:
@ chmod +x $(SCRIPTS)/*
@ $(SCRIPTS)/install
publish:
@ chmod +x $(SCRIPTS)/*
@ $(SCRIPTS)/publish
setup:
@ chmod +x $(SCRIPTS)/*
@ $(SCRIPTS)/setup
test:
@ chmod +x $(SCRIPTS)/*
@ $(SCRIPTS)/run_tests
test_ci:
@ chmod +x $(SCRIPTS)/*
@ $(SCRIPTS)/run_tests --ci