Changeset 65314f7 in sasmodels
- Timestamp:
- Sep 1, 2017 6:47:21 AM (7 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 61a4bd4
- Parents:
- bcdd6c9
- Location:
- sasmodels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/model_test.py
rbedb9b0 r65314f7 201 201 ({}, 'VR', None), 202 202 ] 203 204 tests = smoke_tests + self.info.tests 203 tests = smoke_tests 204 if self.info.tests is not None: 205 tests += self.info.tests 205 206 try: 206 207 model = build_model(self.info, dtype=self.dtype, … … 371 372 stream.writeln(traceback.format_exc()) 372 373 return 373 374 374 # Run the test suite 375 375 suite.run(result) -
sasmodels/modelinfo.py
r724257c r65314f7 718 718 models when the model is first called, not when the model is loaded. 719 719 """ 720 if hasattr(kernel_module, "model_info"): 721 # Custom sum/multi models 722 return kernel_module.model_info 720 723 info = ModelInfo() 721 724 #print("make parameter table", kernel_module.parameters)
Note: See TracChangeset
for help on using the changeset viewer.