Update test-runner

This commit is contained in:
Sean Corfield 2021-05-09 11:40:26 -07:00
parent 1177b4ad44
commit 5c1fb1514b
4 changed files with 10 additions and 8 deletions

View file

@ -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

View file

@ -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).

View file

@ -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

View file

@ -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