checkin time and enable it.
import sys
import bootstrap
-import parallelize as p
import decorator_utils
import executors
+import parallelize as p
import smart_future
@decorator_utils.timed
def test_remote_parallelization() -> None:
results = []
- for _ in range(50):
+ for _ in range(10):
results.append(compute_factorial_remote(_))
for result in smart_future.wait_any(results):
print(result)
if [ ${INTEGRATION} -eq 1 ]; then
for test in $(find ${ROOT} -name "*_itest.py" -print); do
BASE=$(basename ${test})
- BASE="${BASE} (integration test)"
- make_header "${BASE}" "${ORANGE}"
+ HDR="${BASE} (integration test)"
+ make_header "${HDR}" "${ORANGE}"
if [ ${COVERAGE} -eq 1 ]; then
coverage run --source ${HOME}/lib --append ${test}
else