-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
55 lines (35 loc) · 2.68 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
PYTHON=python3
classification/generic.py :
-$(PYTHON) tests/classification/generic.py > logs/classification_generic.log 2>&1
classification/test_client_iris_large_models.py :
-$(PYTHON) tests/classification/test_client_iris_large_models.py > logs/classification_test_client_iris_large_models.log 2>&1
classification/test_client_many_class_models.py :
-$(PYTHON) tests/classification/test_client_many_class_models.py > logs/classification_test_client_many_class_models.log 2>&1
classification : classification/test_client_many_class_models.py classification/test_client_iris_large_models.py classification/generic.py
databases/test_client_bad_model.py :
-$(PYTHON) tests/databases/test_client_bad_model.py > logs/databases_test_client_bad_model.log 2>&1
databases/test_client_db2.py :
-$(PYTHON) tests/databases/test_client_db2.py > logs/databases_test_client_db2.log 2>&1
databases/test_client_hive.py :
-$(PYTHON) tests/databases/test_client_hive.py > logs/databases_test_client_hive.log 2>&1
databases/test_client_mssql.py :
-$(PYTHON) tests/databases/test_client_mssql.py > logs/databases_test_client_mssql.log 2>&1
databases/test_client_mysql.py :
-$(PYTHON) tests/databases/test_client_mysql.py > logs/databases_test_client_mysql.log 2>&1
databases/test_client_non_supported_dialect.py :
-$(PYTHON) tests/databases/test_client_non_supported_dialect.py > logs/databases_test_client_non_supported_dialect.log 2>&1
databases/test_client_oracle.py :
-$(PYTHON) tests/databases/test_client_oracle.py > logs/databases_test_client_oracle.log 2>&1
databases/test_client_pgsql.py :
-$(PYTHON) tests/databases/test_client_pgsql.py > logs/databases_test_client_pgsql.log 2>&1
databases/test_client_sqlite.py :
-$(PYTHON) tests/databases/test_client_sqlite.py > logs/databases_test_client_sqlite.log 2>&1
databases : databases/test_client_sqlite.py databases/test_client_pgsql.py databases/test_client_oracle.py databases/test_client_non_supported_dialect.py databases/test_client_mysql.py databases/test_client_mssql.py databases/test_client_hive.py databases/test_client_db2.py databases/test_client_bad_model.py
regression/generic.py :
-$(PYTHON) tests/regression/generic.py > logs/regression_generic.log 2>&1
regression/test_client_many_reg_models.py :
-$(PYTHON) tests/regression/test_client_many_reg_models.py > logs/regression_test_client_many_reg_models.log 2>&1
regression : regression/test_client_many_reg_models.py regression/generic.py
# **********************************************
all: databases classification regression
build-test : databases classification regression