Browse Source

Use the new this-pylint arguments. Skip two failed imports (that are alternates for each other)

dstromberg 13 years ago
parent
commit
a34fb54e30
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Makefile

+ 4 - 1
Makefile

@@ -8,7 +8,10 @@ performance-graph.pdf: performance-numbers.db gen-performance-graph
 .PRECIOUS: performance-numbers.db
 
 performance-numbers.db: test-bloom-filter
-	./this-pylint bloom_filter_mod.py test-bloom-filter
+	./this-pylint \
+		--ignore-message ".*Unable to import 'dbm'" \
+		--ignore-message ".*Unable to import 'anydbm'" \
+		--to-pylint bloom_filter_mod.py test-bloom-filter
 	rm -f seek.txt array.txt hybrid.txt mmap.txt
 	#/usr/local/pypy-1.7/bin/pypy ./test-bloom-filter --performance-test
 	/usr/bin/python ./test-bloom-filter --performance-test