Spaces:
Running on Zero
Running on Zero
| import pytest | |
| from tests.functional_tests.python_test_utils import common | |
| def pytest_addoption(parser): | |
| """ | |
| Additional command-line arguments passed to pytest. | |
| """ | |
| parser.addoption( | |
| "--allow-nondeterministic-algo", | |
| action="store_true", | |
| default=False, | |
| help="If set, test system checks for approximate results.", | |
| ) | |
| parser.addoption("--golden-values-path", action="store", help="Path to golden values") | |
| parser.addoption("--actual-values-path", action="store", help="Path to actual values") | |
| parser.addoption("--actual-values-first-run-path", action="store", help="Path to actual values") | |
| parser.addoption( | |
| "--actual-values-second-run-path", action="store", help="Path to actual values" | |
| ) | |
| parser.addoption("--scope", action="store", help="Test scope (MR, weekly, prerelease, release)") | |
| parser.addoption( | |
| "--train-iters", action="store", default=100, help="Number of train iters", type=int | |
| ) | |
| parser.addoption("--test-values-path", action="store", help="Path to tensorboard records") | |
| parser.addoption("--tensorboard-path", action="store", help="Path to tensorboard records") | |
| parser.addoption("--model-config-path", action="store", help="Path to model_config.yaml") | |
| def compare_approximate_results(request) -> bool: | |
| """Simple fixture returning whether to check against results approximately.""" | |
| return request.config.getoption("--allow-nondeterministic-algo") is True | |
| def golden_values_path(request): | |
| """Simple fixture returning golden values.""" | |
| return request.config.getoption("--golden-values-path") | |
| def golden_values(request): | |
| """Simple fixture returning golden values.""" | |
| return common.read_golden_values_from_json(request.config.getoption("--golden-values-path")) | |
| def actual_values(request): | |
| """Simple fixture returning golden values.""" | |
| return common.read_golden_values_from_json(request.config.getoption("--actual-values-path")) | |
| def actual_values_first_run(request): | |
| """Simple fixture returning actual values.""" | |
| return common.read_golden_values_from_json( | |
| request.config.getoption("--actual-values-first-run-path") | |
| ) | |
| def actual_values_second_run(request): | |
| """Simple fixture returning actual values.""" | |
| return common.read_golden_values_from_json( | |
| request.config.getoption("--actual-values-second-run-path") | |
| ) | |
| def scope(request): | |
| """Simple fixture returning golden values.""" | |
| return request.config.getoption("--scope") | |
| def train_iters(request): | |
| """Simple fixture returning number of train iters.""" | |
| return request.config.getoption("--train-iters") | |
| def tensorboard_logs(request, train_iters): | |
| """Simple fixture returning tensorboard metrics.""" | |
| return common.read_tb_logs_as_list( | |
| request.config.getoption("--tensorboard-path"), train_iters=train_iters | |
| ) | |
| def test_values_path(request): | |
| return request.config.getoption("--test-values-path") | |
| def tensorboard_path(request): | |
| """Simple fixture returning path to tensorboard logs.""" | |
| return request.config.getoption("--tensorboard-path") | |
| def model_config_path(request): | |
| """Simple fixture returning path to model_config.yaml.""" | |
| return request.config.getoption("--model-config-path") | |