Update test-runner
This commit is contained in:
parent
1177b4ad44
commit
5c1fb1514b
4 changed files with 10 additions and 8 deletions
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
tools-deps: '1.10.3.822'
|
tools-deps: '1.10.3.822'
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: clojure -M:test:runner
|
run: clojure -X:test:runner
|
||||||
|
|
||||||
build-graalvm-old:
|
build-graalvm-old:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -39,7 +39,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
tools-deps: '1.10.3.822'
|
tools-deps: '1.10.3.822'
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: clojure -M:test:runner
|
run: clojure -X:test:runner
|
||||||
|
|
||||||
build-graalvm-new:
|
build-graalvm-new:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -59,4 +59,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
tools-deps: '1.10.3.822'
|
tools-deps: '1.10.3.822'
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: clojure -M:test:runner
|
run: clojure -X:test:runner
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
Only accretive/fixative changes will be made from now on.
|
Only accretive/fixative changes will be made from now on.
|
||||||
|
|
||||||
|
* 1.2.next in progress
|
||||||
|
* Update `test-runner`.
|
||||||
|
|
||||||
* 1.2.659 -- 2021-05-05
|
* 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]_
|
* 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).
|
* Add **Tips & Tricks** section about working with PostgreSQL "interval" types (via PR #163 from @snorremd).
|
||||||
|
|
|
||||||
7
deps.edn
7
deps.edn
|
|
@ -37,11 +37,10 @@
|
||||||
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.14.1"}}
|
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.14.1"}}
|
||||||
:jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"]}
|
:jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"]}
|
||||||
:runner
|
:runner
|
||||||
{:extra-deps {com.cognitect/test-runner
|
{:extra-deps {io.github.cognitect-labs/test-runner
|
||||||
{:git/url "https://github.com/cognitect-labs/test-runner"
|
{:git/url "https://github.com/cognitect-labs/test-runner"
|
||||||
:sha "b6b3193fcc42659d7e46ecd1884a228993441182"}}
|
:sha "2d69f33d7980c3353b246c28f72ffeafbd9f2fab"}}
|
||||||
:main-opts ["-m" "cognitect.test-runner"
|
:exec-fn cognitect.test-runner.api/test}
|
||||||
"-d" "test"]}
|
|
||||||
:jar
|
:jar
|
||||||
{:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.206"}}
|
{:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.206"}}
|
||||||
:exec-fn hf.depstar/jar
|
:exec-fn hf.depstar/jar
|
||||||
|
|
|
||||||
|
|
@ -26,5 +26,5 @@ fi
|
||||||
if test "$1" = ""
|
if test "$1" = ""
|
||||||
then
|
then
|
||||||
NEXT_JDBC_TEST_MSSQL=yes MSSQL_SA_PASSWORD=Str0ngP4ssw0rd \
|
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
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue