Skip to content

Commit

Permalink
Sort library dependencies when running tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
tengstrand committed Mar 30, 2023
1 parent e4d3f0e commit ab63192
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

(defn resolve-deps [{:keys [name] :as project} settings is-verbose color-mode]
(try
(into #{} (mapcat #(-> % second :paths))
(deps/resolve-deps project settings is-verbose))
(sort (into #{} (mapcat #(-> % second :paths))
(deps/resolve-deps project settings is-verbose)))
(catch Exception e
(println (str "Couldn't resolve libraries for the " (color/project name color-mode) " project: " e))
(throw e))))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
(def major 0)
(def minor 2)
(def patch 18)
(def revision "issue259-12")
(def revision "issue261-01")
(def name (str major "." minor "." patch
(if (str/blank? revision)
""
Expand Down

0 comments on commit ab63192

Please sign in to comment.