-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
50 lines (40 loc) · 1.47 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
###
# test, coverage and lint
###
.PHONY : help
help: ## Use one of the following instructions:
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
.PHONY : lint
lint : ## Static code analysis with Pylint
pylint -ry climada > pylint.log || true
.PHONY : unit_test
unit_test : ## Unit tests execution with coverage and xml reports
python -m coverage run tests_runner.py unit
python -m coverage xml -o coverage.xml
python -m coverage html -d coverage
.PHONY : install_test
install_test : ## Test installation was successful
python tests_install.py report
.PHONY : data_test
data_test : ## Test data APIs
python test_data_api.py
.PHONY : notebook_test
notebook_test : ## Test notebooks in doc/tutorial
python test_notebooks.py
.PHONY : integ_test
integ_test : ## Integration tests execution with xml reports
python -m coverage run --parallel-mode --concurrency=multiprocessing tests_runner.py integ
python -m coverage combine
python -m coverage xml -o coverage.xml
python -m coverage html -d coverage
.PHONY : test
test : ## Unit and integration tests execution with coverage and xml reports
python -m coverage run --parallel-mode --concurrency=multiprocessing tests_runner.py unit
python -m coverage run --parallel-mode --concurrency=multiprocessing tests_runner.py integ
python -m coverage combine
python -m coverage xml -o coverage.xml
python -m coverage html -d coverage
.PHONY : ci-clean
ci-clean :
rm -rf tests_xml
rm pylint.log