diff --git a/.github/workflows/long-e2e-tests.yml b/.github/workflows/long-e2e-tests.yml index dab331211e..519f737712 100644 --- a/.github/workflows/long-e2e-tests.yml +++ b/.github/workflows/long-e2e-tests.yml @@ -21,11 +21,6 @@ jobs: - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: python-version: '3.13' - - name: Raise vm.max_map_count - run: | - cat /proc/sys/vm/max_map_count - sudo sysctl -w vm.max_map_count=1048576 - cat /proc/sys/vm/max_map_count - name: Set up Docker Buildx uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0 - name: Install uv and Python dependencies diff --git a/tests/pyproject.toml b/tests/pyproject.toml index ffc75e5786..232a2bfdb9 100644 --- a/tests/pyproject.toml +++ b/tests/pyproject.toml @@ -29,8 +29,8 @@ markers = [ "longrunning: marks tests as long-running (deselect with '-m \"not longrunning\"')", "xdist_group: group tests to run on the same worker (for pytest-xdist)", ] -# Surface hangs at 30 min with a traceback instead of the 60 min job kill. -timeout = 1800 +# Surface hangs at 32 min with a traceback instead of the 60 min job kill. +timeout = 1920 addopts = """ --dist=loadgroup """