forked from brinckmann/montepython_public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
28 lines (24 loc) · 857 Bytes
/
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
test_command_line:
nosetests tests.test_montepython:Test01CommandLineInputBehaviour
test_setup:
nosetests tests.test_montepython:Test02Setup
test_conf:
nosetests tests.test_montepython:Test03NoDefaultConf
test_wrapper:
nosetests tests.test_montepython:Test04CosmologicalCodeWrapper
test_data:
nosetests tests.test_montepython:Test05DataModule
test_MH_IS:
nosetests tests.test_montepython:Test06MetropolisHastingsImportanceSampling
test_CH:
nosetests tests.test_montepython:Test07CosmoHammerBehaviour
test_MN:
nosetests tests.test_montepython:Test08MultiNestBehaviour
test_PC:
nosetests tests.test_montepython:Test09PolyChordBehaviour
short_tests: test_command_line test_setup test_conf test_CH
long_tests: test_wrapper test_data test_MH_IS test_MN test_PC
doctests:
python montepython/data.py
tests: short_tests long_tests
all: doctests tests