|
12 | 12 | (eldev-add-extra-dependencies 'runtime '(:package logview :optional t))
|
13 | 13 | (eldev-add-extra-dependencies 'runtime '(:package clojure-ts-mode :optional t))
|
14 | 14 |
|
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 |
| - |
24 | 15 | (defvar cider-test-type 'main)
|
25 | 16 | (setf eldev-standard-excludes `(:or ,eldev-standard-excludes
|
26 | 17 | ;; Avoid including files in test "projects".
|
27 | 18 | (eldev-pcase-exhaustive cider-test-type
|
28 | 19 | (`main "./test/*/")
|
29 | 20 | (`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")) |
32 | 26 | (`all '("./test/*/" "!./test/integration")))
|
33 | 27 | "test/integration/projects"
|
34 | 28 | ;; This file is _supposed_ to be excluded
|
|
0 commit comments