Reputation: 885
I have a PHP Application (Symfony and ezplatform) and want to run Functional tests Automatically after every push in git.
the requirement for that is that i need A database where I can put my latest dump of DB on it and then run the tests against it.
is that possible to do it in CodeShip for a PHP application at all ? and if yes, how ?
Upvotes: 2
Views: 139
Reputation: 622
You can configure which commands should be used when Codeship starts your tests, there you can add things like
php app/console doctrine:database:create
just think about what you have to do when you setup your project from scratch and write it down (in bash).
Upvotes: 1