Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b652e1a commit b9b8c11Copy full SHA for b9b8c11
20_password/Makefile
@@ -1,4 +1,9 @@
1
.PHONY: test
2
3
-test:
+WORDS = "../inputs/words.txt"
4
+
5
+test: words
6
pytest -xv test.py unit.py
7
8
+words:
9
+ [[ ! -f $(WORDS) ]] && (cd ../inputs && unzip words.txt.zip)
all_test.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
TESTS=$(mktemp)
-find . -name all_test.sh > "$TESTS"
+find . -mindepth 2 -maxdepth 2 -name all_test.sh | sort > "$TESTS"
while read -r TEST; do
DIR=$(dirname "$TEST")
0 commit comments