I'm working in Clojure, against a neo4j database using the neocons library.
I have a test fixture that tears down the nodes and relationships created after each unit test, with the following Cypher query:
START n=node(*) MATCH n-[r?]-() DELETE n,r
This works fine on my workstation, however my Travis CI build fails with "Expected to be in a transaction but wasn't" - see http://travis-ci.org/#!/warrenseymour/workflow/jobs/2477506
I'm using the same version and edition of neo4j in both places, why does one complain about (lack of) transactions when the other does not?