2ac649f3b5
* Try with jepsen v0.3.5 * Add a few WIP adjustments * Add replication restore state on startup flag * Fix some run.sh scripts issues * Improve cluster commands * Run Jepsen on debian-12 with toolchain v5 --------- Co-authored-by: Marko Budiselic <mbudiselicbuda@gmail.com>
15 lines
699 B
Clojure
15 lines
699 B
Clojure
(defproject jepsen.memgraph "0.1.0-SNAPSHOT"
|
|
:description "A Jepsen test for Memgraph"
|
|
:url "https://memgraph.com/"
|
|
:license {:name "Memgraph Enterprise"
|
|
:url "https://github.com/memgraph/memgraph/blob/master/release/LICENSE_ENTERPRISE.md"}
|
|
:main jepsen.memgraph.core
|
|
:dependencies [[org.clojure/clojure "1.10.0"]
|
|
;; Details under https://clojars.org/jepsen/versions.
|
|
[jepsen "0.3.5-SNAPSHOT"]
|
|
[gorillalabs/neo4j-clj "4.1.0"]]
|
|
:profiles {:test {:dependencies [#_[org.neo4j.test/neo4j-harness "4.1.0"]]}}
|
|
;; The below line is required to run after Jepsen 0.3.0.
|
|
:aot :all
|
|
:repl-options {:init-ns jepsen.memgraph.core})
|