summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 41fe4b8..d2bbd10 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ PATH := build/python/bin:$(PATH)
VERSION = $(shell python setup.py --version)
ALLFILES = $(shell echo bottle.py test/*.py test/views/*.tpl)
-.PHONY: release coverage install docs test test_all test_25 test_26 test_27 test_31 test_32 test_33 2to3 clean
+.PHONY: release coverage install docs test test_all test_26 test_27 test_32 test_33 test_34 test_35 2to3 clean
release: test_all
python setup.py --version | egrep -q -v '[a-zA-Z]' # Fail on dev/rc versions
@@ -32,10 +32,7 @@ docs:
test:
python test/testall.py
-test_all: test_25 test_26 test_27 test_31 test_32 test_33 test_34
-
-test_25:
- python2.5 test/testall.py
+test_all: test_26 test_27 test_32 test_33 test_34 test_35
test_26:
python2.6 test/testall.py
@@ -43,9 +40,6 @@ test_26:
test_27:
python2.7 test/testall.py
-test_31:
- python3.1 test/testall.py
-
test_32:
python3.2 test/testall.py
@@ -59,10 +53,8 @@ test_35:
python3.5 test/testall.py
test_setup:
- bash test/build_python.sh 2.5 build/python
bash test/build_python.sh 2.6 build/python
bash test/build_python.sh 2.7 build/python
- bash test/build_python.sh 3.1 build/python
bash test/build_python.sh 3.2 build/python
bash test/build_python.sh 3.3 build/python
bash test/build_python.sh 3.4 build/python