Changeset 174

Show
Ignore:
Timestamp:
02/04/07 13:26:51 (2 years ago)
Author:
mk
Message:

Some minor tweaks.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cheesecake/util.py

    r173 r174  
    3434        start = time.time() 
    3535        while p.poll() is None: 
    36             time.sleep(0.1) 
     36            time.sleep(1) 
    3737            if time.time() - start > max_timeout: 
    3838                os.kill(p.pid, signal.SIGINT) 
  • trunk/tests/unit/test_index_pylint.py

    r109 r174  
    4343        cheesecake = CheesecakeMockup() 
    4444 
     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 
    4549        index.compute_with(cheesecake) 
    4650        assert index.details != "encountered an error during pylint execution"