File: Makefile

package info (click to toggle)
software-properties 0.82.7.1debian1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,680 kB
  • sloc: python: 3,982; xml: 1,571; makefile: 19
file content (15 lines) | stat: -rw-r--r-- 204 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make

all: check

check:
	set -e; \
	find . -name 'test_*.py' | \
	while read file; do \
	    if [ -x $$file ]; then \
		echo "Testing $$file $$PWD"; \
	    	python $$file; \
	    fi \
	done