Skip to content

Commit b9b8c11

Browse files
committed
fixing
1 parent b652e1a commit b9b8c11

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

20_password/Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
.PHONY: test
22

3-
test:
3+
WORDS = "../inputs/words.txt"
4+
5+
test: words
46
pytest -xv test.py unit.py
7+
8+
words:
9+
[[ ! -f $(WORDS) ]] && (cd ../inputs && unzip words.txt.zip)

all_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
TESTS=$(mktemp)
4-
find . -name all_test.sh > "$TESTS"
4+
find . -mindepth 2 -maxdepth 2 -name all_test.sh | sort > "$TESTS"
55

66
while read -r TEST; do
77
DIR=$(dirname "$TEST")

0 commit comments

Comments
 (0)