ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change
on this file since 24f6f4a was
76f132a,
checked in by pkienzle, 11 years ago
|
test resolution and dispersion
|
-
Property mode set to
100644
|
File size:
618 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | import os |
---|
4 | import sys |
---|
5 | import xmlrunner |
---|
6 | import unittest |
---|
7 | import imp |
---|
8 | from os.path import abspath, dirname, split as splitpath, join as joinpath |
---|
9 | |
---|
10 | run_py = joinpath(dirname(dirname(abspath(__file__))), 'run.py') |
---|
11 | run = imp.load_source('sasview_run', run_py) |
---|
12 | run.prepare() |
---|
13 | #print "\n".join(sys.path) |
---|
14 | test_path,test_file = splitpath(abspath(sys.argv[1])) |
---|
15 | print "=== testing:",sys.argv[1] |
---|
16 | #print test_path, test_file |
---|
17 | sys.argv = [sys.argv[0]] |
---|
18 | os.chdir(test_path) |
---|
19 | sys.path.insert(0, test_path) |
---|
20 | test = imp.load_source('tests',test_file) |
---|
21 | unittest.main(test, testRunner=xmlrunner.XMLTestRunner(output='logs')) |
---|
Note: See
TracBrowser
for help on using the repository browser.