diff options
author | Loïc Hoguin <[email protected]> | 2018-11-20 13:28:48 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-11-20 13:28:48 +0100 |
commit | 0704b2fa7c7e6de33e2fea91f8c43ffced3b1926 (patch) | |
tree | eb243408d8493f2e18e991631bcb4a0082315c9b /CONTRIBUTING.asciidoc | |
parent | 1a1fb95f567e34bdf39da92c4033a3047fc255c0 (diff) | |
download | cowboy-0704b2fa7c7e6de33e2fea91f8c43ffced3b1926.tar.gz cowboy-0704b2fa7c7e6de33e2fea91f8c43ffced3b1926.tar.bz2 cowboy-0704b2fa7c7e6de33e2fea91f8c43ffced3b1926.zip |
Document how to run all test suites
Diffstat (limited to 'CONTRIBUTING.asciidoc')
-rw-r--r-- | CONTRIBUTING.asciidoc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CONTRIBUTING.asciidoc b/CONTRIBUTING.asciidoc index ccca6a8..7a3bc84 100644 --- a/CONTRIBUTING.asciidoc +++ b/CONTRIBUTING.asciidoc @@ -228,6 +228,14 @@ $ make tests You can then open Common Test logs in 'logs/all_runs.html'. +By default Cowboy excludes a few test suites that take too +long to complete. For example all the examples are built and +tested, and one Websocket test suite is very extensive. In +order to run everything, do: + +[source,bash] +$ make tests FULL=1 + Once all tests pass (or at least, no new tests are failing), you can commit your changes. |