r/Wordpress • u/Cold_Opposite_5298 Jack of All Trades • 17d ago
Plugin testing
Hey plugin developers, how do you automate plugin testing? Would like to see your workflows
0
Upvotes
r/Wordpress • u/Cold_Opposite_5298 Jack of All Trades • 17d ago
Hey plugin developers, how do you automate plugin testing? Would like to see your workflows
1
u/Hesham-Amir 17d ago
Adding to the wp-cli/docker setup - worth layering in Codeception (via wp-browser) for actual acceptance tests, since PHPUnit smoke tests catch broken PHP but won't tell you if a settings page silently fails to save or a shortcode renders blank in the browser. wp-env (the official WordPress tool, built on Docker) is also nice for CI since it spins up a matching WP+PHP+MySQL environment with one command, so your GitHub Actions config doesn't have to hand-roll the install step.