File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,3 +9,4 @@ pom.xml.asc
99.idea /
1010.DS_Store
1111table2qb.iml
12+ .cpcache
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ clojure -A:test -m kaocha.runner " $@ "
Original file line number Diff line number Diff line change 88 commons-io/commons-io {:mvn/version " 2.4" }}
99 :paths [" src" " resources" ]
1010 :aliases
11- {:with-logging
11+ {:test {:extra-paths [" test" " test/resources" ]
12+ :extra-deps {lambdaisland/kaocha {:mvn/version " 0.0-343" }}}
13+ :with-logging
1214 {:extra-deps
1315 {org.apache.logging.log4j/log4j-api {:mvn/version " 2.11.0" }
1416 org.apache.logging.log4j/log4j-core {:mvn/version " 2.11.0" }
Original file line number Diff line number Diff line change 1111 [grafter.extra.validation.pmd :as pmd]
1212 [grafter.extra.validation.pmd.dataset :as pmdd]))
1313
14- (deftest integration-test
14+ (deftest ^:integration integration-test
1515 (testing " Validates table2qb outputs against pmd, dataset, and cube tests"
1616 (testing " Overseas Trade"
1717 (with-repository [repo (repo/fixture-repo
Original file line number Diff line number Diff line change 1+ #kaocha/v1
2+ {:tests [{:type :kaocha.type/clojure.test
3+ :id :unit
4+ :source-paths [" src" ]
5+ :test-paths [" test" ]
6+ :ns-patterns [" -test$" ]
7+ :skip-meta [:integration ]}
8+ {:type :kaocha.type/clojure.test
9+ :id :integration
10+ :source-paths [" src" ]
11+ :test-paths [" test" ]
12+ :ns-patterns [" -test$" ]
13+ :focus-meta [:integration ]}]
14+ :reporter kaocha.report/documentation
15+ ; ;:plugins [kaocha.plugin/profiling]
16+ :plugins [:kaocha.plugin/print-invocations
17+ :kaocha.plugin/profiling ]
18+ }
You can’t perform that action at this time.
0 commit comments