We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac88c78 commit eae4ccbCopy full SHA for eae4ccb
.github/remove_pytest.bash
@@ -0,0 +1,11 @@
1
+#!/usr/bin/env cached-nix-shell
2
+#! nix-shell -i bash -p fd
3
+
4
5
+# Find modules that have a tests directory
6
+tested=$(fd main.nf.test modules/)
7
8
+for module in $tested; do
9
+ clean=$(dirname $module | sed 's|tests||')
10
+ rmdir "tests/${clean}"
11
+done
0 commit comments