Skip to content

Commit

Permalink
Adding 3.2 and 3.3 test options.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Reifschneider committed Oct 16, 2013
1 parent 5172513 commit 3484a4a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
TESTS = $(wildcard test_*.py)

# XXX Uncomment these lines if you want to test with Python 3.2 and 3.3
#all.PHONY: test test32 test33
#
#test32:
# @- $(foreach TEST,$(TESTS), \
# echo === Running python3 test: $(TEST); \
# python3.2 $(TEST); \
# )
#test33:
# @- $(foreach TEST,$(TESTS), \
# echo === Running python3 test: $(TEST); \
# python3.3 $(TEST); \
# )

.PHONY: test

test:
Expand Down

0 comments on commit 3484a4a

Please sign in to comment.