Skip to content

Commit

Permalink
update run-tess.sh/deps.edn to match ci multi-version tests
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <sean@corfield.org>
  • Loading branch information
seancorfield committed Oct 4, 2024
1 parent fb4ef58 commit afe9565
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
16 changes: 16 additions & 0 deletions .calva/repl.calva-repl
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꞉> 
10 changes: 5 additions & 5 deletions deps.edn
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"]}}}
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

versions="1.8 1.9 1.10 master"
versions="1.9 1.10 1.11 1.12"
for v in $versions
do
time clojure -M:test:$v
Expand Down

0 comments on commit afe9565

Please sign in to comment.