Changeset 17b1873 in sasview
- Timestamp:
- Oct 23, 2013 10:49:02 AM (11 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 1c1b037
- Parents:
- 5980b1a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/utest_sansview.py
raa01d07b r17b1873 21 21 SKIPPED_DIRS.append("sansguiframe") 22 22 23 SANSVIEW_DIR = os.pardir24 23 COMMAND_SEP = ';' 25 24 if os.name == 'nt': … … 33 32 n_failures = 0 34 33 35 for d in os.listdir( SANSVIEW_DIR):34 for d in os.listdir(os.getcwd()): 36 35 37 36 # Check for modules to be skipped … … 40 39 41 40 # Go through modules looking for unit tests 42 module_dir = os.path.join(os.getcwd(), SANSVIEW_DIR,d,"test")41 module_dir = os.path.join(os.getcwd(),d,"test") 43 42 if os.path.isdir(module_dir): 44 43 for f in os.listdir(module_dir):
Note: See TracChangeset
for help on using the changeset viewer.