File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 2
2
export VERSION =$(shell python setup.py --version)
3
3
4
4
# Locations of Python interpreter binaries
5
+ PYTHON27 =/Users/dhellmann/Devel/virtualenvwrapper/Python/2.7b1/bin/python2.7
5
6
PYTHON26 =/Library/Frameworks/Python.framework/Versions/2.6/bin/python2.6
6
7
PYTHON25 =/Library/Frameworks/Python.framework/Versions/2.5/bin/python2.5
7
8
PYTHON24 =/Users/dhellmann/Devel/virtualenvwrapper/Python/2.4.6/bin/python2.4
8
9
9
- # The main version of Python supported.
10
- PRIMARY_PYTHON_VERSION =$(PYTHON26 )
11
-
12
10
# The test-quick pattern changes the definition of
13
11
# this variable to only run against a single version of python.
14
12
ifeq ($(PYTHON_BINARIES ) ,)
15
- PYTHON_BINARIES =$(PRIMARY_PYHTON_VERSION ) $(PYTHON25 ) $(PYTHON24 )
13
+ PYTHON_BINARIES =$(PYTHON26 ) $( PYTHON27 ) $(PYTHON25 ) $(PYTHON24 )
16
14
endif
17
15
18
16
SUPPORTED_SHELLS =bash sh ksh zsh
@@ -100,11 +98,19 @@ test-loop:
100
98
done \
101
99
done
102
100
103
- test-quick :
104
- PYTHON_BINARIES=$(PRIMARY_PYTHON_VERSION ) $(MAKE ) test-bash
101
+ test-quick : test-26
105
102
106
103
test-24 :
107
104
PYTHON_BINARIES=$(PYTHON24 ) $(MAKE ) test-bash
108
105
106
+ test-25 :
107
+ PYTHON_BINARIES=$(PYTHON25 ) $(MAKE ) test-bash
108
+
109
+ test-26 :
110
+ PYTHON_BINARIES=$(PYTHON26 ) $(MAKE ) test-bash
111
+
112
+ test-27 :
113
+ PYTHON_BINARIES=$(PYTHON27 ) $(MAKE ) test-bash
114
+
109
115
test-install :
110
116
bash ./tests/manual_test_install.sh ` pwd` /dist " $( VERSION) "
Original file line number Diff line number Diff line change 7
7
- Switched hook loader execution to a form that works with Python
8
8
2.4 to resolve `issue 43
9
9
<http://bitbucket.org/dhellmann/virtualenvwrapper/issue/43/> `__.
10
+ - Tested under Python 2.7b1. See `issue 44
11
+ <http://bitbucket.org/dhellmann/virtualenvwrapper/issue/44/> `__.
10
12
11
13
2.1.1
12
14
You can’t perform that action at this time.
0 commit comments