source: sasview/test/run_one.py @ 64ca561

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 64ca561 was 64ca561, checked in by Ricardo Ferraz Leal <ricleal@…>, 7 years ago

Log not repeated any longer

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