cf05c5bd1943dd0f855c3d2a51c904e775e6eae7,tests/tracking/test_fluent.py,,test_start_run_overrides,#Any#,253

Before Change


        mlflow_tags.MLFLOW_PROJECT_ENTRY_POINT: mock_entry_point_name
    }

    with databricks_notebook_patch, create_run_patch, to_str_patch, from_str_patch:
        active_run = start_run(
            experiment_id=mock_experiment_id, source_name=mock_source_name,
            source_version=mock_source_version, entry_point_name=mock_entry_point_name,

After Change



    mock_experiment_id = mock.Mock()
    mock_source_name = mock.Mock()
    source_type = SourceType.JOB
    mock_source_version = mock.Mock()
    mock_entry_point_name = mock.Mock()
    mock_run_name = mock.Mock()

    expected_tags = {
        mlflow_tags.MLFLOW_SOURCE_NAME: mock_source_name,
        mlflow_tags.MLFLOW_SOURCE_TYPE: SourceType.to_string(source_type),
        mlflow_tags.MLFLOW_GIT_COMMIT: mock_source_version,
        mlflow_tags.MLFLOW_PROJECT_ENTRY_POINT: mock_entry_point_name
    }
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: mlflow/mlflow
Commit Name: cf05c5bd1943dd0f855c3d2a51c904e775e6eae7
Time: 2019-03-13
Author: wacrozier@gmail.com
File Name: tests/tracking/test_fluent.py
Class Name:
Method Name: test_start_run_overrides


Project Name: mlflow/mlflow
Commit Name: cf05c5bd1943dd0f855c3d2a51c904e775e6eae7
Time: 2019-03-13
Author: wacrozier@gmail.com
File Name: tests/tracking/test_fluent.py
Class Name:
Method Name: test_start_run_with_parent


Project Name: mlflow/mlflow
Commit Name: cf05c5bd1943dd0f855c3d2a51c904e775e6eae7
Time: 2019-03-13
Author: wacrozier@gmail.com
File Name: tests/tracking/test_fluent.py
Class Name:
Method Name: test_start_run_overrides_databricks_notebook


Project Name: mlflow/mlflow
Commit Name: cf05c5bd1943dd0f855c3d2a51c904e775e6eae7
Time: 2019-03-13
Author: wacrozier@gmail.com
File Name: tests/tracking/test_fluent.py
Class Name:
Method Name: test_start_run_overrides