1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-31 09:32:01 +02:00

disable broken tests, tag as flaky which sometimes fail

This commit is contained in:
soloturn
2020-10-25 12:58:02 +01:00
parent a1ce03b505
commit cbdf457419
11 changed files with 25 additions and 7 deletions

View File

@@ -88,12 +88,13 @@ This will include all dependencies in the JAR.
# Running Tests
Tests can be marked as beeing slow or not. Default is to run all tests. Slow tests can be excluded to run, and slow
tests can be run on its own. After building you can run tests, quoting might be necessary depending on your shell:
Tests can be marked as beeing slow, or flaky. Default is to run all but the flaky tests. Slow tests can be excluded to
run. slow and flaky tests can be run on its own. After building you can run tests, quoting might be necessary depending
on your shell:
```bash
mvn test
mvn test -Dgroups=slow
mvn test -Dgroups=flaky,slow
mvn test '-Dgroups=!slow'
```