File tree 3 files changed +22
-6
lines changed
3 files changed +22
-6
lines changed Original file line number Diff line number Diff line change
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꞉>
Original file line number Diff line number Diff line change 1
1
; ; You can run clojure.core.cache tests with: clj -A:test:runner
2
2
; ; 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
4
4
5
5
{:paths [" src/main/clojure" ]
6
6
: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" }}}
9
8
: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" }}}
11
11
:test
12
12
{:extra-paths [" src/test/clojure" ]
13
13
:extra-deps {org.clojure/test.check {:mvn/version " 1.1.1" }
14
14
io.github.cognitect-labs/test-runner
15
- {:git/tag " v0.4.0 " :git/sha " 334f2e2 " }}
15
+ {:git/tag " v0.5.1 " :git/sha " dfb30dd " }}
16
16
:main-opts [" -m" " cognitect.test-runner"
17
17
" -d" " src/test/clojure" ]}}}
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
- versions=" 1.8 1.9 1.10 master "
3
+ versions=" 1.9 1.10 1.11 1.12 "
4
4
for v in $versions
5
5
do
6
6
time clojure -M:test:$v
You can’t perform that action at this time.
0 commit comments