File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ The Maven build uses profiles named after the categories to choose which tests t
89
89
mvn test -Pshort
90
90
```
91
91
92
- The default is "unit". Each profile runs the ones before it ("short" runs unit, etc.)
92
+ The default is "unit". Each profile runs only their own category ("short" will * not * run "unit").
93
93
94
94
Integration tests use [ CCM] ( https://github.com/pcmanus/ccm ) to bootstrap Cassandra instances.
95
95
Two Maven properties control its execution:
Original file line number Diff line number Diff line change 951
951
<profile >
952
952
<id >short</id >
953
953
<properties >
954
- <test .groups>unit, short</test .groups>
954
+ <test .groups>short</test .groups>
955
955
<test .osgi.skip>false</test .osgi.skip>
956
956
</properties >
957
957
</profile >
958
958
959
959
<profile >
960
960
<id >long</id >
961
961
<properties >
962
- <test .groups>unit,short, long</test .groups>
962
+ <test .groups>long</test .groups>
963
963
<test .osgi.skip>false</test .osgi.skip>
964
964
</properties >
965
965
</profile >
966
966
967
967
<profile >
968
968
<id >duration</id >
969
969
<properties >
970
- <test .groups>unit,short,long, duration</test .groups>
970
+ <test .groups>duration</test .groups>
971
971
<test .osgi.skip>false</test .osgi.skip>
972
972
</properties >
973
973
</profile >
974
974
975
975
<profile >
976
976
<id >doc</id >
977
977
<properties >
978
- <test .groups>unit, doc</test .groups>
978
+ <test .groups>doc</test .groups>
979
979
</properties >
980
980
</profile >
981
981
You can’t perform that action at this time.
0 commit comments