Skip to content

Commit

Permalink
fix: all test ns have -test suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
erdos committed Jul 20, 2024
1 parent 83930b4 commit 43bd502
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr_visual_flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Compile Java
run: lein javac
- name: Test Clojure
run: lein test stencil.visual
run: lein test stencil.visual-test
- name: Archive diff png
uses: actions/upload-artifact@v3
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion test/stencil/errors.clj → test/stencil/errors_test.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(ns stencil.errors
(ns stencil.errors-test
(:import [io.github.erdos.stencil.exceptions ParsingException EvalException])
(:require [stencil.types :refer :all]
[stencil.integration :refer [test-fails]]
Expand Down
4 changes: 1 addition & 3 deletions test/stencil/various.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
(ns stencil.various
"Not used yet."
(:require [clojure.data.xml.pu-map :as pu-map]
[clojure.string :as s]
[stencil.postprocess.ignored-tag :refer :all]))
(:require [stencil.postprocess.ignored-tag :refer :all]))

(defn- url-decode [s] (java.net.URLDecoder/decode (str s) "UTF-8"))

Expand Down
2 changes: 1 addition & 1 deletion test/stencil/visual.clj → test/stencil/visual_test.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(ns stencil.visual
(ns stencil.visual-test
(:require [clojure.java.shell]
[clojure.string :as str]
[clojure.test :refer [deftest testing use-fixtures]]
Expand Down

0 comments on commit 43bd502

Please sign in to comment.