Test selectors were mentioned earlier, and they go in project.clj, so should be reflected later on.

This commit is contained in:
Adam Getchell 2011-12-01 00:15:31 -08:00
parent d320cd0818
commit 61f6455db9

View file

@ -309,6 +309,9 @@ file should look like this:
:dependencies [[org.clojure/clojure "1.2.0"]
[org.apache.lucene/lucene-core "3.0.2"]
[lancet "1.0.0"]]
:test-selectors {:default (fn [v] (not (:integration v)))
:integration :integration
:all (fn [_] true)}
:main myproject.core)
```