RE: Why Cassandra unit test run skips some of it?

2017-09-21 Thread Tyagi, Preetika
: Thursday, September 21, 2017 11:03 AM To: dev@cassandra.apache.org Subject: Re: Why Cassandra unit test run skips some of it? There’s also at least one test we skip in circleci where we know the container memory is insufficient for the test - based on environment variables in that case. -- Jeff Jirsa

Re: Why Cassandra unit test run skips some of it?

2017-09-21 Thread Jeff Jirsa
There’s also at least one test we skip in circleci where we know the container memory is insufficient for the test - based on environment variables in that case. -- Jeff Jirsa > On Sep 21, 2017, at 10:14 AM, Josh McKenzie wrote: > > It at least skips the CDC* tests unless you use the test-

Re: Why Cassandra unit test run skips some of it?

2017-09-21 Thread Josh McKenzie
It at least skips the CDC* tests unless you use the test-cdc target, as it needs some different .yaml configurations so runs as a separate job. Not sure about any other skips. On Thu, Sep 21, 2017 at 12:29 PM, Tyagi, Preetika wrote: > Hi all, > > I downloaded and built the Cassandra project from

Why Cassandra unit test run skips some of it?

2017-09-21 Thread Tyagi, Preetika
Hi all, I downloaded and built the Cassandra project from GitHub and ran all unit tests by running the below command: ant test -Dtest.runners=4 When it finished, I saw >99% success rate, however, it also showed some number under "Skipped" tests as well. Does someone know why would it skip some

Re: cassandra unit test

2016-09-06 Thread Benjamin Lerer
ata into table in cassandra > unit test file. > > public static UntypedResultSet execute(String query, ConsistencyLevel cl, > Object... values) > throws RequestExecutionException > { > return execute(query, cl, internalQueryState(), values); > } >

cassandra unit test

2016-09-05 Thread Stone Fang
Call QueryProcessor.execute method to insert data into table in cassandra unit test file. public static UntypedResultSet execute(String query, ConsistencyLevel cl, Object... values) throws RequestExecutionException { return execute(query, cl, internalQueryState(), values