Skip to content

Commit afe9565

Browse files
committed
update run-tess.sh/deps.edn to match ci multi-version tests
Signed-off-by: Sean Corfield <[email protected]>
1 parent fb4ef58 commit afe9565

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

.calva/repl.calva-repl

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
; This is the Calva REPL Window.
2+
; It's just a file, really, with some special treatment from Calva.
3+
; Use it as a REPL input prompt if you like. (When the REPL is connected.)
4+
; TIPS: The keyboard shortcut `ctrl+alt+o r` shows and focuses this window
5+
; Please see https://calva.io/repl-window/ for more info.
6+
; Happy coding! ♥️
7+
8+
; TIPS: As with any Clojure file when the REPL is connected:
9+
; - `alt+enter` evaluates the current top level form.
10+
; - `ctrl+enter` evaluates the current form.
11+
; Special for this file:
12+
; - `alt+up` and `alt+down` traverse up and down the REPL command history
13+
; when the cursor is after the last contents at the prompt
14+
;
15+
; See also the Calva Inspector: https://calva.io/inspector/
16+
clj꞉user꞉> 

deps.edn

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
;; You can run clojure.core.cache tests with: clj -A:test:runner
22
;; You can also specify an alias to select which version of Clojure to test
3-
;; against: :1.8 :1.9 :1.10 :master
3+
;; against: :1.9 :1.10 :1.11 :1.12
44

55
{:paths ["src/main/clojure"]
66
:deps {org.clojure/data.priority-map {:mvn/version "1.2.0"}}
7-
:aliases {:1.8 {:override-deps {org.clojure/clojure {:mvn/version "1.8.0"}}}
8-
:1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}}
7+
:aliases {:1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}}
98
:1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
10-
:master {:override-deps {org.clojure/clojure {:mvn/version "1.11.0-master-SNAPSHOT"}}}
9+
:1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
10+
:1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}}
1111
:test
1212
{:extra-paths ["src/test/clojure"]
1313
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
1414
io.github.cognitect-labs/test-runner
15-
{:git/tag "v0.4.0" :git/sha "334f2e2"}}
15+
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
1616
:main-opts ["-m" "cognitect.test-runner"
1717
"-d" "src/test/clojure"]}}}

run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
versions="1.8 1.9 1.10 master"
3+
versions="1.9 1.10 1.11 1.12"
44
for v in $versions
55
do
66
time clojure -M:test:$v

0 commit comments

Comments
 (0)