source: sasview/test/run_one.py @ 9e308a3

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalcmagnetic_scattrelease-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 9e308a3 was 9e308a3, checked in by Paul Kienzle <pkienzle@…>, 7 years ago

tweak utests so it is slightly easier to identify and run failing tests

  • Property mode set to 100755
File size: 1.0 KB
RevLine 
[6fe5100]1#!/usr/bin/env python
[aaf5e49]2from __future__ import print_function
[6fe5100]3
4import os
5import sys
6import xmlrunner
7import unittest
8import imp
9from os.path import abspath, dirname, split as splitpath, join as joinpath
10
[c155a16]11import logging
[463e7ffc]12logger = logging.getLogger(__name__)
[64ca561]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
[aaad4c95]18if len(sys.argv) < 2:
19    logger.error("Use %s <filename to test>",sys.argv[0])
20    sys.exit(-1)
[c155a16]21
[6fe5100]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)
[76f132a]26test_path,test_file = splitpath(abspath(sys.argv[1]))
[aaf5e49]27print("=== testing:",sys.argv[1])
[6fe5100]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.