hello, I have two interesting and important question about new parallel testing.
How can I delete databases after finish of running parallel testing and if I do that, on the next run will it take as long time as it takes on the first run?
@dealense You can either use in memory SQLite, which will be faster and you won't need to worry about standing up or deleting the database... or just create a mysql testing database and use that for tests without worrying about creation/deletion, just set and forget. Paratest/Laravel automatically handles refreshing for each database with the RefreshDatabases standard syntax.
Yes, you can make groups with group annotations in PHPunit and target those via command line. Should still be able to do this in parallel.
@fylzero problem in one database is that it does not work with multiple pipelines. But thanks anyway, I will try sql lite, and if it will work, I can give you feedback.