mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-29 02:24:35 -05:00
* Enable PEP604 Ruff rules * Fix harcoded signature in test * Hack CLVMStreamable test with note to fast follow
14 lines
419 B
Python
14 lines
419 B
Python
from __future__ import annotations
|
|
|
|
from typing import Literal
|
|
|
|
# Defaults are conservative.
|
|
parallel: bool | int | Literal["auto"] = True
|
|
checkout_blocks_and_plots = False
|
|
install_timelord = False
|
|
# NOTE: do not use until the hangs are fixed
|
|
# https://github.com/CFMTech/pytest-monitor/issues/53
|
|
# https://github.com/pythonprofilers/memory_profiler/issues/342
|
|
check_resource_usage = False
|
|
job_timeout = 30
|