File tree Expand file tree Collapse file tree 1 file changed +21
-6
lines changed
Expand file tree Collapse file tree 1 file changed +21
-6
lines changed Original file line number Diff line number Diff line change 11# Execute all tests that can run without any dependencies
2+ DIRNAME=` dirname " $0 " `
3+
4+ PYTHON=" ${PYTHON:- python} "
25
36export PYTHONPATH=" .."
47
58FAILED=0
6- python test_range_helper.py
9+ $PYTHON " $DIRNAME /test_range_helper.py"
10+ if [ $? -ne 0 ]
11+ then
12+ FAILED=` expr $FAILED + 1`
13+ fi
14+
15+ $PYTHON " $DIRNAME /test_scan_settings.py"
16+ if [ $? -ne 0 ]
17+ then
18+ FAILED=` expr $FAILED + 1`
19+ fi
20+
21+ $PYTHON " $DIRNAME /test_commands.py"
722if [ $? -ne 0 ]
823then
924 FAILED=` expr $FAILED + 1`
1025fi
1126
12- python test_scan_settings .py
27+ $PYTHON " $DIRNAME /test_table_scan .py"
1328if [ $? -ne 0 ]
1429then
1530 FAILED=` expr $FAILED + 1`
1631fi
1732
18- python test_commands .py
33+ $PYTHON " $DIRNAME /test_data .py"
1934if [ $? -ne 0 ]
2035then
2136 FAILED=` expr $FAILED + 1`
2237fi
2338
24- python test_table_scan.py
39+ $PYTHON -m doctest " $DIRNAME /test_ndim.txt "
2540if [ $? -ne 0 ]
2641then
2742 FAILED=` expr $FAILED + 1`
2843fi
2944
30- python test_data .py
45+ $PYTHON -m doctest " $DIRNAME /test_alignment .py"
3146if [ $? -ne 0 ]
3247then
3348 FAILED=` expr $FAILED + 1`
3449fi
3550
36- python -m doctest test_ndim.txt
51+ $PYTHON -m doctest " $DIRNAME /test_spreadsheet.py "
3752if [ $? -ne 0 ]
3853then
3954 FAILED=` expr $FAILED + 1`
You can’t perform that action at this time.
0 commit comments