chia-blockchain/tests/testconfig.py
Arvid Norberg e3f3a540e3
Parallel CI (#16071)
* run CI jobs in parallel by default

* run cat_wallet tests in serial

* run simulation tests in serial
2023-08-17 12:16:26 -05:00

18 lines
432 B
Python

from __future__ import annotations
from typing import TYPE_CHECKING, List, Union
if TYPE_CHECKING:
from typing_extensions import Literal
Oses = Literal["macos", "ubuntu", "windows"]
# Defaults are conservative.
parallel: Union[bool, int, Literal["auto"]] = True
checkout_blocks_and_plots = False
install_timelord = False
check_resource_usage = False
job_timeout = 30
custom_vars: List[str] = []
os_skip: List[Oses] = []