Changeset 174
- Timestamp:
- 02/04/07 13:26:51 (2 years ago)
- Files:
-
- trunk/cheesecake/util.py (modified) (1 diff)
- trunk/tests/unit/test_index_pylint.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cheesecake/util.py
r173 r174 34 34 start = time.time() 35 35 while p.poll() is None: 36 time.sleep( 0.1)36 time.sleep(1) 37 37 if time.time() - start > max_timeout: 38 38 os.kill(p.pid, signal.SIGINT) trunk/tests/unit/test_index_pylint.py
r109 r174 43 43 cheesecake = CheesecakeMockup() 44 44 45 # Raise maximum execution time to 5 minutes, so test won't fail 46 # on slower machines. 47 index.max_execution_time = 5*60 48 45 49 index.compute_with(cheesecake) 46 50 assert index.details != "encountered an error during pylint execution"
