As part of the work i did for
https://issues.apache.org/jira/browse/CASSANDRA-14134, one of the things I did
was add a new command line argument “--execute-upgrade-tests”.
all the upgrade tests are now annotated with an upgrade_test pytest annotation.
by default they aren’t run. adding a single
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
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