Changeset 574adc7 in sasview for test/sasdataloader
- Timestamp:
- Sep 22, 2017 4:01:32 PM (7 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 34d7b35
- Parents:
- 9706d88
- Location:
- test/sasdataloader/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/sasdataloader/test/utest_abs_reader.py
rae69c690 r574adc7 224 224 _found2 = True 225 225 226 if _found1 == False or _found2 == False: 227 raise RuntimeError, "Could not find all data %s %s" % (_found1, _found2) 226 if not _found1 or not _found2: 227 raise RuntimeError("Could not find all data %s %s" 228 % (_found1, _found2)) 228 229 229 230 # Detector … … 269 270 _found_term1 = True 270 271 271 if _found_term1 == False or _found_term2 == False: 272 raise RuntimeError, "Could not find all process terms %s %s" % (_found_term1, _found_term2) 272 if not _found_term1 or not _found_term2: 273 raise RuntimeError("Could not find all process terms %s %s" 274 % (_found_term1, _found_term2)) 273 275 274 276 def test_writer(self): -
test/sasdataloader/test/utest_cansas.py
r17e257b5 r574adc7 2 2 Unit tests for the new recursive cansas reader 3 3 """ 4 import os 5 import sys 6 import StringIO 7 import unittest 8 import logging 9 import warnings 10 11 from lxml import etree 12 from lxml.etree import XMLSyntaxError 13 from xml.dom import minidom 14 4 15 import sas.sascalc.dataloader.readers.cansas_reader as cansas 5 16 from sas.sascalc.dataloader.loader import Loader … … 8 19 from sas.sascalc.dataloader.readers.cansas_reader import Reader 9 20 from sas.sascalc.dataloader.readers.cansas_constants import CansasConstants 10 11 import os12 import sys13 import urllib214 import StringIO15 import pylint as pylint16 import unittest17 import numpy as np18 import logging19 import warnings20 21 from lxml import etree22 from lxml.etree import XMLSyntaxError23 from xml.dom import minidom24 21 25 22 logger = logging.getLogger(__name__) … … 309 306 310 307 if __name__ == '__main__': 311 unittest.main() 308 unittest.main()
Note: See TracChangeset
for help on using the changeset viewer.