-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
24 lines (22 loc) · 1.08 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
tests:
#python3 -m unittest tests.test_stacking.TestStackingLogit
#python3 -m unittest tests.test_stacking.TestStackingBayesianAverage
#python3 -m unittest tests.test_stacking.TestStackingBayesianAverageMCMC
#python3 -m unittest tests.test_stacking.TestStackingMLR
#python3 -m unittest tests.test_stacking.TestAgnosticBayesian
#python3 -m unittest tests.test_stacking.TestStackingMLR
#python3 -m unittest tests.test_stacking.TestStackingLogit
python3 -m unittest tests.test_ensemble_selection.TestEnsembleSelectionStandard
#python3 -m unittest tests.test_ensemble_selection.TestEnsembleSelectionSortedInit
python3 -m unittest tests.test_ensemble_selection.TestEnsembleSelectionWithReplacements
#python3 -m unittest tests.test_ensemble_selection.TestEnsembleSelectionSortedInit
#python3 -m unittest tests.test_wrappers.TestPruning
#python3 -m unittest tests.test_wrappers.TestBagging
rm -rf *.pyc __pycache__
rm -rf */*.pyc */__pycache__
test: tests
clean:
rm -rf *.pyc __pycache__
rm -rf */*.pyc */__pycache__
rm -rf */*/*.pyc */__pycache__
.PHONY: tests test