diff --git a/.travis.yml b/.travis.yml index 8945dc4a1ad..eba2b74bc5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -279,7 +279,7 @@ jobs: - travis-wait-enhanced --timeout 50m --interval 9m -- ./build-support/bin/ci.py --githooks --smoke-tests --python-version 3.6 - travis-wait-enhanced --timeout 40m --interval 9m -- ./build-support/bin/ci.py - --remote-execution-enabled --lint --python-version 3.6 + --lint --python-version 3.6 stage: Test Pants sudo: required - addons: @@ -340,7 +340,7 @@ jobs: - travis-wait-enhanced --timeout 50m --interval 9m -- ./build-support/bin/ci.py --githooks --smoke-tests --python-version 3.7 - travis-wait-enhanced --timeout 40m --interval 9m -- ./build-support/bin/ci.py - --remote-execution-enabled --lint --python-version 3.7 + --lint --python-version 3.7 stage: Test Pants (Cron) sudo: required - before_cache: @@ -435,8 +435,7 @@ jobs: - '3.7' script: - travis-wait-enhanced --timeout 65m --interval 9m -- ./build-support/bin/ci.py - --unit-tests --integration-tests --remote-execution-enabled --python-version - 3.6 + --unit-tests --integration-tests --python-version 3.6 stage: Test Pants sudo: required - addons: @@ -497,8 +496,7 @@ jobs: - '3.7' script: - travis-wait-enhanced --timeout 65m --interval 9m -- ./build-support/bin/ci.py - --unit-tests --integration-tests --remote-execution-enabled --python-version - 3.7 + --unit-tests --integration-tests --python-version 3.7 stage: Test Pants (Cron) sudo: required - before_cache: diff --git a/build-support/bin/generate_travis_yml.py b/build-support/bin/generate_travis_yml.py index 47cfef95666..117a0656422 100644 --- a/build-support/bin/generate_travis_yml.py +++ b/build-support/bin/generate_travis_yml.py @@ -511,7 +511,7 @@ def lint(python_version: PythonVersion) -> Dict: # local execution has finished. ( "travis-wait-enhanced --timeout 40m --interval 9m -- ./build-support/bin/ci.py " - f"--remote-execution-enabled --lint --python-version {python_version.decimal}" + f"--lint --python-version {python_version.decimal}" ), ], } @@ -558,7 +558,7 @@ def python_tests(python_version: PythonVersion) -> Dict: "name": f"Python tests (Python {python_version.decimal})", "script": [ "travis-wait-enhanced --timeout 65m --interval 9m -- ./build-support/bin/ci.py " - "--unit-tests --integration-tests --remote-execution-enabled --python-version " + "--unit-tests --integration-tests --python-version " f"{python_version.decimal}" ], "after_success": ["./build-support/bin/upload_coverage.sh"], diff --git a/src/python/pants/backend/python/lint/docformatter/BUILD b/src/python/pants/backend/python/lint/docformatter/BUILD index 6b9af42ba79..d60cda888fb 100644 --- a/src/python/pants/backend/python/lint/docformatter/BUILD +++ b/src/python/pants/backend/python/lint/docformatter/BUILD @@ -6,4 +6,5 @@ python_library() python_integration_tests( name='integration', uses_pants_run=False, + timeout=120, ) diff --git a/src/python/pants/base/BUILD b/src/python/pants/base/BUILD index bdebb39bb6f..621b083ba9d 100644 --- a/src/python/pants/base/BUILD +++ b/src/python/pants/base/BUILD @@ -30,7 +30,7 @@ python_integration_tests( tags=['platform_specific_behavior'], # NB: This frequently times out, but due to hanging. So, we want to fail eagerly. See # https://github.com/pantsbuild/pants/issues/8127. - timeout=200, + timeout=400, ) python_integration_tests( diff --git a/src/python/pants/build_graph/BUILD b/src/python/pants/build_graph/BUILD index 1d2c318c4bd..42ca323f522 100644 --- a/src/python/pants/build_graph/BUILD +++ b/src/python/pants/build_graph/BUILD @@ -11,4 +11,5 @@ python_tests( python_integration_tests( name='integration', uses_pants_run=True, + timeout=180, ) diff --git a/src/python/pants/engine/internals/BUILD b/src/python/pants/engine/internals/BUILD index e07f3e8755b..733e2eb1025 100644 --- a/src/python/pants/engine/internals/BUILD +++ b/src/python/pants/engine/internals/BUILD @@ -17,7 +17,7 @@ python_integration_tests( dependencies=[ 'examples/src/python/example:hello_directory', ], - timeout=90, + timeout=180, ) python_library( diff --git a/src/python/pants/help/BUILD b/src/python/pants/help/BUILD index f443045e3b5..f7604a972ce 100644 --- a/src/python/pants/help/BUILD +++ b/src/python/pants/help/BUILD @@ -12,5 +12,5 @@ python_tests( python_integration_tests( name='integration', uses_pants_run=True, - timeout=120, + timeout=180, ) diff --git a/tests/python/pants_test/integration/BUILD b/tests/python/pants_test/integration/BUILD index 03300b13dea..c4cc0933197 100644 --- a/tests/python/pants_test/integration/BUILD +++ b/tests/python/pants_test/integration/BUILD @@ -8,7 +8,7 @@ python_integration_tests( 'src/python/pants/testutil:int-test', ], uses_pants_run=True, - timeout = 120, + timeout = 240, ) python_integration_tests( diff --git a/tests/python/pants_test/pantsd/BUILD b/tests/python/pants_test/pantsd/BUILD index 6f29160b8e0..4382a099270 100644 --- a/tests/python/pants_test/pantsd/BUILD +++ b/tests/python/pants_test/pantsd/BUILD @@ -18,5 +18,5 @@ python_integration_tests( 'testprojects/src/python:print_env_directory', ], uses_pants_run=True, - timeout = 1020 + timeout = 1800 )