Replies: 2 comments 2 replies
-
here is the full (edited) config { |
Beta Was this translation helpful? Give feedback.
-
I tried this again with another projects with similar results so not sure if Iam missing a step or 2. See my previous posts for steps I performed after migrating "AND [System.WorkItemType] NOT IN ('Test Suite','Test Plan','Shared Steps','Shared Parameter','Feedback Request')" This is what I'm seeing in the logs 2024-03-02 22:42:41.351 -05:00 [INF] =============================================================================================== |
Beta Was this translation helpful? Give feedback.
-
Hey folks,
I am trying to migrate Test Suites/Plans that have Test Cases, and Shared Steps, and Shared Parameters.
Step 1 - ran the WorkItemMigrationConfig with:
"ReflectedWorkItemIDFieldName": "Custom.ReflectedWorkItemId"
"WIQLQueryBit":" AND [System.WorkItemType] NOT IN ('Test Suite','Test Plan','Shared Steps','Shared Parameter','Feedback Request')"
No Issues
Step 2 - ran WorkItemUpdateConfig with"
"ReflectedWorkItemIDFieldName": "Microsoft.VSTS.Build.IntegrationBuild"
"WIQLQueryBit": "AND [System.WorkItemType] IN ('Test Case')"
"FieldMaps": [
{
"$type": "FieldtoFieldMapConfig",
"WorkItemTypeName": "Test Case",
"sourceField": "Custom.ReflectedWorkItemId",
"targetField": "Microsoft.VSTS.Build.IntegrationBuild",
"defaultValue": ""
}
]
No issues
Step 3 - ran WorkItemUpdateConfig with"
"ReflectedWorkItemIDFieldName": "Microsoft.VSTS.Build.IntegrationBuild"
"WIQLQueryBit": "AND [System.WorkItemType] IN ('Test Case','Shared Steps','Shared Parameter')",
No issues
Step 4 - ran TestVariablesMigrationConfig, TestConfigurationsMigrationConfig, and TestPlansAndSuitesMigrationConfig
"ReflectedWorkItemIDFieldName": "Microsoft.VSTS.Build.IntegrationBuild"
Issues
All 31 Plans migrated, but only 42 of the 158 Suites migrated and I get this in the logs
"Test Suite <> from source cannot be found in target. Has it been migrated?"
What am I missing?
Beta Was this translation helpful? Give feedback.
All reactions