From 0e47d7f7a6600b152ad8026ab8ba4dca2d55323c Mon Sep 17 00:00:00 2001 From: Lee Read Date: Fri, 19 May 2023 05:26:18 -0400 Subject: [PATCH] tests: run babashka.process lib tests on windows (#1564) Now that babashka.process tests are os agnostic we can also run them on Windows. This should now work, see babashka/process#126 --- .../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