~gary-lasker/software-center/installedview-search-fixes

« back to all changes in this revision

Viewing changes to test/Makefile

mergedĀ fromĀ lp:~alexeftimie/software-center/backend-refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
all: check #mago_test
4
4
 
5
5
check:
6
 
        set -e; \
7
 
        find . -name 'test_*.py' | \
8
 
        while read file; do \
9
 
            if [ -f $$file ]; then \
10
 
                echo "Testing $$file"; \
11
 
                python $$file ; \
12
 
            fi \
13
 
        done
 
6
        ./test-all.sh
14
7
 
15
8
clean:
16
9
        find  ../data/xapian/ ./data/aptroot/var/lib/apt/lists/ \