Merge remote-tracking branch 'origin/master' into 3999.structure-config-manipulation

This commit is contained in:
Itamar Turner-Trauring
2023-05-01 12:52:18 -04:00
26 changed files with 357 additions and 263 deletions

View File

@ -4,6 +4,7 @@ Ported to Python 3.
from __future__ import annotations
import os
import sys
import shutil
from time import sleep
@ -49,6 +50,11 @@ from .util import (
)
from allmydata.node import read_config
# No reason for HTTP requests to take longer than two minutes in the
# integration tests. See allmydata/scripts/common_http.py for usage.
os.environ["__TAHOE_CLI_HTTP_TIMEOUT"] = "120"
# pytest customization hooks
def pytest_addoption(parser):