Skip to content

Commit 7b79b9a

Browse files
committed
Include platform_integration_test it mock machine options
1 parent 0d6462f commit 7b79b9a

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

mpf/commands/hardware.py

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def __init__(self, args, path):
3232

3333
self.mpf = MachineController({"bcp": False,
3434
"no_load_cache": False,
35+
"platform_integration_test": False,
3536
"mpfconfigfile": os.path.join(self.mpf_path, "mpfconfig.yaml"),
3637
"configfile": ["config"],
3738
"production": False,

mpf/tests/MpfTestCase.py

+1
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,7 @@ def get_options(self):
389389
'debug': True,
390390
'bcp': self.get_use_bcp(),
391391
'no_load_cache': False,
392+
'platform_integration_test': False,
392393
'create_config_cache': True,
393394
'text_ui': False,
394395
}

tools/afl_fuzz.py

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def get_options(self):
7070
'debug': False,
7171
'bcp': False,
7272
'no_load_cache': False,
73+
'platform_integration_test': False,
7374
'create_config_cache': True,
7475
'text_ui': False,
7576
'production': not self.debug,

tools/debug_run_game.py

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'debug': True,
1818
'bcp': True,
1919
'no_load_cache': False,
20+
'platform_integration_test': False,
2021
'create_config_cache': True,
2122
'text_ui': False,
2223
'consoleloglevel': logging.DEBUG,

0 commit comments

Comments
 (0)