This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import pathlib | |
| import subprocess | |
| import sys | |
| import time | |
| def load_test_file(file_path): | |
| with open(file_path, encoding='utf-8') as file: | |
| return file.read().strip().splitlines() |
OlderNewer