Changeset 2429
- Timestamp:
- Mar 12, 2010 1:38:11 AM (11 years ago)
- Location:
- coopr.plugins/trunk/coopr/plugins/tests/mip
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
coopr.plugins/trunk/coopr/plugins/tests/mip/test_asl.py
r2421 r2429 154 154 155 155 156 @unittest.skipIf(not cplexamp_available, "The 'cplexamp' command is not available")157 156 class mip_all(mock_all): 158 157 … … 160 159 self.do_setup(True) 161 160 161 mip_all = unittest.skipIf(not cplexamp_available, "The 'cplexamp' command is not available")(mip_all) 162 162 163 163 if __name__ == "__main__": -
coopr.plugins/trunk/coopr/plugins/tests/mip/test_cbc.py
r2421 r2429 155 155 156 156 157 @unittest.skipIf(not cbc_available, "The 'cbc' command is not available")158 157 class mip_all(mock_all): 159 158 … … 169 168 #os.remove(currdir+"test_solve1a.soln") 170 169 170 mip_all = unittest.skipIf(not cbc_available, "The 'cbc' command is not available")(mip_all) 171 171 172 172 if __name__ == "__main__": -
coopr.plugins/trunk/coopr/plugins/tests/mip/test_cplex.py
r2421 r2429 153 153 154 154 155 @unittest.skipIf(not cplex_available, "The CPLEX solver is not available")156 155 class mip_all(mock_all): 157 156 … … 159 158 self.do_setup(True) 160 159 160 mip_all = unittest.skipIf(not cplex_available, "The CPLEX solver is not available")(mip_all) 161 161 162 162 if __name__ == "__main__": -
coopr.plugins/trunk/coopr/plugins/tests/mip/test_glpk.py
r2421 r2429 164 164 165 165 166 @unittest.skipIf(not glpk_available, "The 'glpsol' command is not available")167 166 class mip_all(mock_all): 168 167 … … 180 179 os.remove(currdir+"glpk.soln") 181 180 181 mip_all = unittest.skipIf(not glpk_available, "The 'glpsol' command is not available")(mip_all) 182 182 183 183 if __name__ == "__main__": -
coopr.plugins/trunk/coopr/plugins/tests/mip/test_pico.py
r2421 r2429 153 153 154 154 155 @unittest.skipIf(not pico_available, "The PICO solver is not available")156 155 class mip_all(mock_all): 157 156 … … 159 158 self.do_setup(True) 160 159 160 mip_all = unittest.skipIf(not pico_available, "The PICO solver is not available")(mip_all) 161 161 162 162 if __name__ == "__main__":
Note: See TracChangeset
for help on using the changeset viewer.