source: sasview/test/run_one.py @ aaf5e49

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.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since aaf5e49 was aaf5e49, checked in by andyfaff, 7 years ago

MAINT: few more print instances

  • Property mode set to 100644
File size: 1.0 KB
Line 
1#!/usr/bin/env python
2from __future__ import print_function
3
4import os
5import sys
6import xmlrunner
7import unittest
8import imp
9from os.path import abspath, dirname, split as splitpath, join as joinpath
10
11import logging
12logger = logging.getLogger(__name__)
13if not logger.root.handlers:
14    import logging.config
15    LOGGER_CONFIG_FILE = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'logging.ini')
16    logging.config.fileConfig(LOGGER_CONFIG_FILE, disable_existing_loggers=False)
17
18if len(sys.argv) < 2:
19    logger.error("Use %s <filename to test>",sys.argv[0])
20    sys.exit(-1)
21
22run_py = joinpath(dirname(dirname(abspath(__file__))), 'run.py')
23run = imp.load_source('sasview_run', run_py)
24run.prepare()
25#print "\n".join(sys.path)
26test_path,test_file = splitpath(abspath(sys.argv[1]))
27print("=== testing:",sys.argv[1])
28#print test_path, test_file
29sys.argv = [sys.argv[0]]
30os.chdir(test_path)
31sys.path.insert(0, test_path)
32test = imp.load_source('tests',test_file)
33unittest.main(test, testRunner=xmlrunner.XMLTestRunner(output='logs'))
Note: See TracBrowser for help on using the repository browser.