# Usage of the Automate Test. With the `Makefile` you can automate the tests with just a command. ### commands: ```shell make # will show you the help and the commands. ``` * To run clean the ENV. ex: ```shell make clean suite= ``` * To build the geoserver image. ```shell make build suite= ``` * To test the suite. ```shell make test suite= ``` * To run all the steps from the beginning. ```shell make clean build test suite= ``` *Note*: shall match the name of the subdirectory of the suite. examples below. ### example: Run the `wms11` suite: ``` make clean build test suite=wms11 ```