Skip to content

Commit

Permalink
Remove "clean" tag
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinKu committed Oct 5, 2018
1 parent e715546 commit aa2451b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,6 @@ $(DCURL_LIB): $(DCURL_DIR)
TESTS += $(wildcard tests/*.py)
TESTS += $(wildcard tests/tangleid/*.sh)

check: server.py $(DCURL_LIB)
@ TMP_PID=`mktemp /tmp/server_pid.XXXXXX`; \
echo "Running test suite..." ; \
( python $^ & echo $$! > $${TMP_PID} ); \
sleep 3 ; \
for i in $(TESTS); do \
( echo "\n\n==[ $$i ]==\n"; $$i || kill -9 `cat $${TMP_PID}` ) \
done ; \
kill -9 `cat $${TMP_PID}`
@$(RM) $${TMP_PID}

clean:
find . -name '*.pyc' | xargs $(RM)
Expand Down

0 comments on commit aa2451b

Please sign in to comment.