I have a couple of migrations that basically import data from our old DB that is horribly constructed to a new DB that is slightly less horrible. Probably should be a seeder now that I think about it.. but anyway. I don't need these migrations to run during my tests, the others I need. Is there a command, or a flag I can set somewhere that will prevent certain migrations from run during tests? I've googled a bit and haven't found anything useful.
I understand if this isn't really a needed thing. If this isn't possible I'll try and rewrite them as seeders.
I forgot I could check the environment. Thank you. For some reason it didn't like that code.. I had to wrap the entire migration in if(!App::environment('testing')) {} Still it got me where I needed to go. Thank you!