diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6287346..dabb920 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: with: tools-deps: '1.10.3.822' - name: Run Tests - run: clojure -M:test:runner + run: clojure -X:test:runner build-graalvm-old: runs-on: ubuntu-latest @@ -39,7 +39,7 @@ jobs: with: tools-deps: '1.10.3.822' - name: Run Tests - run: clojure -M:test:runner + run: clojure -X:test:runner build-graalvm-new: runs-on: ubuntu-latest @@ -59,4 +59,4 @@ jobs: with: tools-deps: '1.10.3.822' - name: Run Tests - run: clojure -M:test:runner + run: clojure -X:test:runner diff --git a/CHANGELOG.md b/CHANGELOG.md index 429c500..f90aa82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ Only accretive/fixative changes will be made from now on. +* 1.2.next in progress + * Update `test-runner`. + * 1.2.659 -- 2021-05-05 * Address #164 by making `clj-commons/camel-snake-kebab` an unconditional dependency. _[Being a conditional dependency that could be brought in at runtime caused problems with GraalVM-based native compilation as well as with multi-project monorepos]_ * Add **Tips & Tricks** section about working with PostgreSQL "interval" types (via PR #163 from @snorremd). diff --git a/deps.edn b/deps.edn index 14990a7..6f7156e 100644 --- a/deps.edn +++ b/deps.edn @@ -37,11 +37,10 @@ org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.14.1"}} :jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"]} :runner - {:extra-deps {com.cognitect/test-runner + {:extra-deps {io.github.cognitect-labs/test-runner {:git/url "https://github.com/cognitect-labs/test-runner" - :sha "b6b3193fcc42659d7e46ecd1884a228993441182"}} - :main-opts ["-m" "cognitect.test-runner" - "-d" "test"]} + :sha "2d69f33d7980c3353b246c28f72ffeafbd9f2fab"}} + :exec-fn cognitect.test-runner.api/test} :jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.206"}} :exec-fn hf.depstar/jar diff --git a/run-tests.sh b/run-tests.sh index 903460f..6af8f32 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -26,5 +26,5 @@ fi if test "$1" = "" then NEXT_JDBC_TEST_MSSQL=yes MSSQL_SA_PASSWORD=Str0ngP4ssw0rd \ - NEXT_JDBC_TEST_MYSQL=yes clojure -M:test:runner + NEXT_JDBC_TEST_MYSQL=yes clojure -X:test:runner fi