Skip to content

Commit a4c43c7

Browse files
committed
Revert "Only skip tests on windows, make note about them needing fixing"
This reverts commit 8a77695.
1 parent 599f0f6 commit a4c43c7

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

Eldev

+5-11
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,17 @@
1212
(eldev-add-extra-dependencies 'runtime '(:package logview :optional t))
1313
(eldev-add-extra-dependencies 'runtime '(:package clojure-ts-mode :optional t))
1414

15-
(defvar clojure-ts-failing-tests
16-
(when (member system-type '(ms-dos windows-nt cygwin))
17-
'("./test/cider-client-tests.el"
18-
"./test/cider-eval-tests.el"))
19-
"Tests that fail when running against clojure-ts-mode. These need to be fixed.
20-
See 'cider-expected-ns returns the namespace matching the given string path'
21-
and 'cider-provide-file can handle multibyte characters'
22-
test results from windows CI run.")
23-
2415
(defvar cider-test-type 'main)
2516
(setf eldev-standard-excludes `(:or ,eldev-standard-excludes
2617
;; Avoid including files in test "projects".
2718
(eldev-pcase-exhaustive cider-test-type
2819
(`main "./test/*/")
2920
(`integration '("./test/" "!./test/integration"))
30-
(`clojure-ts-mode `("./test/*/" "!./test/clojure-ts-mode"
31-
,@clojure-ts-failing-tests))
21+
(`clojure-ts-mode '("./test/*/" "!./test/clojure-ts-mode"
22+
;; 1 test in each of the below files fails
23+
;; when running clojure-ts-mode tests on windows.
24+
"./test/cider-client-tests.el"
25+
"./test/cider-eval-tests.el"))
3226
(`all '("./test/*/" "!./test/integration")))
3327
"test/integration/projects"
3428
;; This file is _supposed_ to be excluded

0 commit comments

Comments
 (0)