only run cassandra RotateRootCred test when in Travis (#5420)

This commit is contained in:
Martin
2018-09-27 17:43:33 +02:00
committed by Jeff Mitchell
parent b92e73c0e6
commit f50f9cb278

View File

@@ -253,6 +253,9 @@ func TestCassandra_RevokeUser(t *testing.T) {
}
func TestCassandra_RotateRootCredentials(t *testing.T) {
if os.Getenv("TRAVIS") != "true" {
t.SkipNow()
}
cleanup, address, port := prepareCassandraTestContainer(t)
defer cleanup()