Speed up tests with federated learning enabled (#8350)

* Speed up tests with federated learning enabled

* Re-enable timeouts

Co-authored-by: Hyunsu Philip Cho <chohyu01@cs.washington.edu>
This commit is contained in:
Rong Ou
2022-10-17 15:17:04 -07:00
committed by GitHub
parent 031d66ec27
commit 8f3dee58be
5 changed files with 10 additions and 14 deletions

View File

@@ -41,7 +41,7 @@ def skip_ipv6() -> PytestSkip:
return {"condition": not has_ipv6(), "reason": "IPv6 is required to be enabled."}
def timeout(sec: int, *args: Any, enable: bool = False, **kwargs: Any) -> Any:
def timeout(sec: int, *args: Any, enable: bool = True, **kwargs: Any) -> Any:
"""Make a pytest mark for the `pytest-timeout` package.
Parameters