tuplejump / calliope

Calliope is a library integrating Cassandra and Spark framework.
http://tuplejump.github.io/calliope/
Apache License 2.0
28 stars 5 forks source link

How do i run the specs? #33

Closed pezra closed 10 years ago

pezra commented 10 years ago

I tried sbt test which does run the tests but they seem to be expecting some keyspaces and tables and such. Is there a script to create those?

milliondreams commented 10 years ago

@pezra You'll need to start cassandra and load the test data prior to running the tests.

The scripts are here - https://github.com/tuplejump/calliope/tree/develop/src/test/resources

You'll need to run datascript.cli using the old cli and the cql3test.cql using cqlsh.

pezra commented 10 years ago

thanks!