-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update run-tess.sh/deps.edn to match ci multi-version tests
Signed-off-by: Sean Corfield <[email protected]>
- Loading branch information
1 parent
fb4ef58
commit afe9565
Showing
3 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
; This is the Calva REPL Window. | ||
; It's just a file, really, with some special treatment from Calva. | ||
; Use it as a REPL input prompt if you like. (When the REPL is connected.) | ||
; TIPS: The keyboard shortcut `ctrl+alt+o r` shows and focuses this window | ||
; Please see https://calva.io/repl-window/ for more info. | ||
; Happy coding! ♥️ | ||
|
||
; TIPS: As with any Clojure file when the REPL is connected: | ||
; - `alt+enter` evaluates the current top level form. | ||
; - `ctrl+enter` evaluates the current form. | ||
; Special for this file: | ||
; - `alt+up` and `alt+down` traverse up and down the REPL command history | ||
; when the cursor is after the last contents at the prompt | ||
; | ||
; See also the Calva Inspector: https://calva.io/inspector/ | ||
clj꞉user꞉> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
;; You can run clojure.core.cache tests with: clj -A:test:runner | ||
;; You can also specify an alias to select which version of Clojure to test | ||
;; against: :1.8 :1.9 :1.10 :master | ||
;; against: :1.9 :1.10 :1.11 :1.12 | ||
|
||
{:paths ["src/main/clojure"] | ||
:deps {org.clojure/data.priority-map {:mvn/version "1.2.0"}} | ||
:aliases {:1.8 {:override-deps {org.clojure/clojure {:mvn/version "1.8.0"}}} | ||
:1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}} | ||
:aliases {:1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}} | ||
:1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}} | ||
:master {:override-deps {org.clojure/clojure {:mvn/version "1.11.0-master-SNAPSHOT"}}} | ||
:1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}} | ||
:1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}} | ||
:test | ||
{:extra-paths ["src/test/clojure"] | ||
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"} | ||
io.github.cognitect-labs/test-runner | ||
{:git/tag "v0.4.0" :git/sha "334f2e2"}} | ||
{:git/tag "v0.5.1" :git/sha "dfb30dd"}} | ||
:main-opts ["-m" "cognitect.test-runner" | ||
"-d" "src/test/clojure"]}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters