diff --git a/.github/workflows/pr_visual_flow.yml b/.github/workflows/pr_visual_flow.yml index 3c00381d..2873da3d 100644 --- a/.github/workflows/pr_visual_flow.yml +++ b/.github/workflows/pr_visual_flow.yml @@ -26,7 +26,7 @@ jobs: - name: Compile Java run: clojure -T:build compile-java - name: Test Clojure - run: clojure -M:test --focus stencil.visual # TODO: double-check + run: clojure -M:test --focus stencil.visual-test - name: Archive diff png uses: actions/upload-artifact@v3 if: failure() diff --git a/test/stencil/errors.clj b/test/stencil/errors_test.clj similarity index 99% rename from test/stencil/errors.clj rename to test/stencil/errors_test.clj index 042536ae..b84e726a 100644 --- a/test/stencil/errors.clj +++ b/test/stencil/errors_test.clj @@ -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]] diff --git a/test/stencil/various.clj b/test/stencil/various.clj index 62604489..4c08f6f0 100644 --- a/test/stencil/various.clj +++ b/test/stencil/various.clj @@ -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")) diff --git a/test/stencil/visual.clj b/test/stencil/visual_test.clj similarity index 98% rename from test/stencil/visual.clj rename to test/stencil/visual_test.clj index 44b93cb0..0a12391d 100644 --- a/test/stencil/visual.clj +++ b/test/stencil/visual_test.clj @@ -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]]