-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use RCF with leiningen #53
Comments
Solution from slack: https://clojurians.slack.com/archives/C7Q9GSHFV/p1650824587456189
I'd be happy to learn about better/cleaner way to do this. Thanks for sharing this! |
A minimal (defproject my/project "0.0.0"
:dependencies [[org.clojure/clojure "1.10.3"]]
:profiles {:test {:dependencies [[com.hyperfiddle/rcf "20220405"]]
:jvm-opts ["-Dhyperfiddle.rcf.generate-tests=true"]}}) Then run If you have (defproject my/project "0.0.0"
:dependencies [[org.clojure/clojure "1.10.3"]
[com.hyperfiddle/rcf "20220405"]]
:profiles {:test {:jvm-opts ["-Dhyperfiddle.rcf.generate-tests=true"]
:test-paths ["test" "src"]}}) |
Oh wow, it's obvious now. Thanks a lot :) |
I would love for this to be documented for newbies like me :) |
Reopening to add to readme |
Question is: "Basically just be able to use RCF with lein. It would be great if i can 'lein test' and it works."
The text was updated successfully, but these errors were encountered: