clojure-expectations / lein-autoexpect

Run expecations when source or test files change
103 stars 12 forks source link

lein not finding autoexpect? #2

Closed eigenhombre closed 12 years ago

eigenhombre commented 12 years ago

(django-pydev-venv)mac 06:12:34 > cat project.clj (defproject aetest "1.0.0-SNAPSHOT" :description "FIXME: write description" :dependencies [[org.clojure/clojure "1.2.1"] [lein-autoexpect "0.0.2"]] :dev-dependencies [[lein-expectations "0.0.1"] [expectations "1.1.0"]]) (django-pydev-venv)mac 06:14:07 > lein deps Copying 3 files to /Users/jacobsen/Programming/Lisp/Clojure/aetest/lib Copying 5 files to /Users/jacobsen/Programming/Lisp/Clojure/aetest/lib/dev (django-pydev-venv)mac 06:14:16 > lein autoexpect That's not a task. Use "lein help" to list all tasks. (django-pydev-venv)mac 06:14:23 >

Many thanks, excited to try this out out.

jakemcc commented 12 years ago

Try moving the [lein-autoexpect "0.0.2"] to be under your :dev-depenencies section. After doing that with your example it was able to find it.

As a heads up, the current version of lein-autoexpect is 0.0.3. This release fixes an issue with it not respecting :test-path or :source-path keys in the project definition.

Closing issue for now. Let me know if you need anything else.

eigenhombre commented 12 years ago

Works, thank you! And thanks for updating the README.