Passed
Branch DICOMAnonimization (c59297)
by Yang
02:05
created

coverage_setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 27
dl 0
loc 33
rs 10
c 0
b 0
f 0
wmc 0
1
import sys
2
import os
3
4
print(sys.executable)
5
print(sys.path)
6
7
# Get current path:
8
pwd = os.path.dirname(os.path.abspath(__file__))
9
print(pwd)
10
11
script_root = os.path.dirname(pwd)
12
print(script_root)
13
sys.path.append(script_root)
14
print(sys.path)
15
print("OKAY")
16
17
from test_Intermediate_Server import test_updateLocalTimepoint
18
from test_LocalDBCreate import test_LocalDBCreate, test_LocalDBCreate_CNBP
19
from test_LocalDBQuery import test_CheckSubjectExist, test_CreateSubject, test_CreateSubjectCheckExist, test_SubjectUpdate
20
from test_LORIS_Query import test_checkPSCIDExist, test_checkDCCIDExist, test_LORIS_get, test_LORIS_login
21
22
test_updateLocalTimepoint()
23
test_LocalDBCreate()
24
test_LocalDBCreate_CNBP()
25
test_CheckSubjectExist()
26
test_CreateSubject()
27
test_CreateSubjectCheckExist()
28
test_SubjectUpdate()
29
test_checkPSCIDExist()
30
test_checkDCCIDExist()
31
test_LORIS_get()
32
test_LORIS_login()
33