From 7f8ec567e6d4a50d03db4d675a286f591f67ea72 Mon Sep 17 00:00:00 2001 From: Lee Read Date: Sat, 13 May 2023 17:39:31 -0400 Subject: [PATCH] tests: run babashka.process lib tests on windows (#1559) Now that babashka.process tests are os agnostic we can also run them on Windows. --- .../lib_tests/babashka/run_all_libtests.clj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test-resources/lib_tests/babashka/run_all_libtests.clj b/test-resources/lib_tests/babashka/run_all_libtests.clj index a5092434..8d9c42fe 100644 --- a/test-resources/lib_tests/babashka/run_all_libtests.clj +++ b/test-resources/lib_tests/babashka/run_all_libtests.clj @@ -93,13 +93,13 @@ (test-doric-cyclic-dep-problem)) ;;;; babashka.process -(when-not (windows?) - ;; test built-in babashka.process - (test-namespaces 'babashka.process-test) +;; test built-in babashka.process +(test-namespaces 'babashka.process-test) - ;; test babashka.process from source - (require '[babashka.process] :reload) - (test-namespaces 'babashka.process-test)) +;; test babashka.process from source +#_{:clj-kondo/ignore [:duplicate-require]} +(require '[babashka.process] :reload) +(test-namespaces 'babashka.process-test) ;;;; final exit code