Lines Matching +full:run +full:- +full:time
2 # SPDX-License-Identifier: GPL-2.0+
8 # Copyright (C) 2005-2011 Canonical Ltd
15 This allows you to parallelize a test run across a configurable number
16 of worker processes. While this can speed up CPU-bound test runs, it is
17 mainly useful for IO-bound tests that spend most of their time waiting for
56 :return: An iterable of TestCase-like objects which can each have
57 run(result) called on them to feed tests to result.
81 process_suite.run(subunit_result)
104 # This just assigns tests in a round-robin fashion. On one hand this
105 # splits up blocks of related tests that might run faster if they shared
117 import time
123 time.sleep(0.5)
126 time.sleep(0.5)
129 time.sleep(0.5)
132 time.sleep(0.5)
138 # Run tests sequentially
139 runner.run(suite)
141 # Run same tests across 4 processes
144 runner.run(concurrent_suite)