Revert setting vm.max_map_count to higher value and increase pytest timeout for e2e tests (#9191)

This commit is contained in:
tellet-q
2026-05-27 11:15:06 +02:00
committed by timvisee
parent 9109542993
commit 3de12da31e
2 changed files with 2 additions and 7 deletions

View File

@@ -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

View File

@@ -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
"""