Restore merged options (command line, configuration file and default values) that could be possibly changed during the testing of previous target.
()
| 703 | kb.aliasName = randomStr(seed=hash(conf.hostname or "")) |
| 704 | |
| 705 | def _restoreMergedOptions(): |
| 706 | """ |
| 707 | Restore merged options (command line, configuration file and default values) |
| 708 | that could be possibly changed during the testing of previous target. |
| 709 | """ |
| 710 | |
| 711 | for option in RESTORE_MERGED_OPTIONS: |
| 712 | conf[option] = mergedOptions[option] |
| 713 | |
| 714 | def initTargetEnv(): |
| 715 | """ |
no outgoing calls
no test coverage detected
searching dependent graphs…