Posted by amool on May 27, 2014 at 12:04pm
I just wanted to test the migration from D6. I installed fresh copy of D6 & installed devel module on it to generate 50 test users. I cloned latest copy of IMP from chx's sandbox & installed it. Created a manifest.yml in imp/ drupal root directory with contents:
# A D6 user migration, with dependencies.
- d6_userAnd executed
drush migrate-manifest manifest.yml --db-url=mysql://root@12 7.0.0.1/d6
I got an error Migration d6_user did not meet the requirements [error]


Comments
Information for migration testing
FYI, the issue queue for the D6 to D8 migration is in Drupal core. You can access the issues here: https://drupal.org/project/issues/drupal?component=migratiaon%20system
For issues that relate to aspects of the D8 migration module that are not in core, the issue queue is here: https://drupal.org/project/issues/2105305?categories=All
For your problem, your manifest is not complete. You need to include all dependencies, as well as the d6_user migration. Here is the manifest I used a couple of weeks ago:
- d6_filter_format- d6_user_role
- d6_user_picture_field
- d6_user_picture_field_instance
- d6_user_picture_entity_display
- d6_user_picture_entity_form_display
- d6_user
Here is a document that outlines what is needed to run a migration: https://drupal.org/node/2257723