Soluto / wordpress-plugin-tests-template

A template for a Wordpress plugin with tests that are running using Docker
MIT License
36 stars 15 forks source link
docker soluto-open-source testing wordpress wordpress-development wordpress-plugin

DEPRECATED

This repository is no longer maintained and has been archived. Feel free to browse the code, but please migrate to other solutions.

wordpress-plugin-tests-template

Wordpress plugin development is easy, but when it come to testing things can get complicated pretty fast. Wordpress CLI can generate all that is required to write integration tests for your plugin, with live Wordpress environment. But to run those tests you need to have PHP and MySql on your machine, which is not always the case. This sound like really good used case for docker and docker-compose - we can create the relevant images and run them easily on any machine that has Docker. This also mean that the same version of PHP and MySql that run on your machine, also run on the CI, and you can easily target various PHP/Wordpress versions. To learn more about this template in this blog post

Features

How to run the tests?

And watch the tests running. To clean up, run: docker-compose down.

Changes in the plugin code or the tests will be hot-reloaded, no need to run build command again.

How to use this template?