Pytest: consistent codecov (#30408)

* seed only

* random seed

* ignore version.py

* increase max examples

* increase default max examples
This commit is contained in:
Justin Newberry
2023-11-08 16:43:32 -05:00
committed by GitHub
parent 4967377b3f
commit d02dd50749
4 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ from openpilot.selfdrive.test.fuzzy_generation import DrawType, FuzzyGenerator
ALL_ECUS = list({ecu for ecus in FW_VERSIONS.values() for ecu in ecus.keys()})
MAX_EXAMPLES = int(os.environ.get('MAX_EXAMPLES', '5'))
MAX_EXAMPLES = int(os.environ.get('MAX_EXAMPLES', '20'))
def get_fuzzy_car_interface_args(draw: DrawType) -> dict: