Hi!
How to completely skip upgrade tests when running dtests?
Best regards,
Sergey
Here is how cassandra-builds jenkins job do:$ rm -r upgrade_tests/
https://github.com/apache/cassandra-builds/blob/master/build-scripts/cassandra-dtest.sh#L50
On Friday, December 8, 2017, 1:28:34 AM PST, Sergey
wrote:
Hi!
How to completely skip upgrade tests when running dtests?
Best
Yep, that rm is a bit of a hack, since environment vars for
JDK{8,9}_HOME are not able to be set on the static slaves. The "proper"
way to skip them is just a normal nose exclude (drop --collect-only to
actually run 'em):
./run_dtests.py --nose-options="--collect-only -e upgrade_tests/"
or
noset