README.md line 62 tells contributors:
Run all the tests with mvn -Prun-its verify to assure nothing else was accidentally broken.
There is no run-its profile in any POM in this repository. A contributor following the instruction gets a build that quietly runs fewer tests than they think, since Maven only warns about a missing profile.
Two things would make the instruction true:
Worth correcting alongside #904, since the right command depends on whether that lands.
Found while writing the developer guide in #905, which documents the working commands.
README.mdline 62 tells contributors:There is no
run-itsprofile in any POM in this repository. A contributor following the instruction gets a build that quietly runs fewer tests than they think, since Maven only warns about a missing profile.Two things would make the instruction true:
mvn verifyis what actually runs the normal suite.-Dssh-tests -Dssh-embedded=true. Those did not run at all until [wagon-3.x] Revive the embedded SSH tests and run them in CI #904.Worth correcting alongside #904, since the right command depends on whether that lands.
Found while writing the developer guide in #905, which documents the working commands.