Skip to content

Commit bf97de6

Browse files
committed
update install and test shell scripts
Signed-off-by: Drew Fustini <drew@pdp7.com>
1 parent c749402 commit bf97de6

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

install_all_python_versions.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
#!/bin/bash
22
# useful for testing changes against all versions of python
33
make clean
4-
echo "Install Python 2.7"
5-
python2.7 ./setup.py install
6-
echo "Install Python 3.5"
7-
python3.5 ./setup.py install
8-
echo "Install Python 3.6"
9-
python3.6 ./setup.py install
4+
echo "Install Python 2"
5+
python2 ./setup.py install
6+
echo "Install Python 3"
7+
python3 ./setup.py install

pytest_all_versions.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
# useful for testing changes against all versions of python
33

44
cd test
5-
echo "Testing Python 2.7"
6-
python2.7 -mpytest
7-
echo "Testing Python 3.5"
8-
python3.5 -mpytest
9-
echo "Testing Python 3.6"
10-
python3.6 -mpytest
5+
echo "Testing Python 2"
6+
python2 -mpytest
7+
echo "Testing Python 3"
8+
python3 -mpytest
119
cd ..

0 commit comments

Comments
 (0)