File tree Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22# useful for testing changes against all versions of python
33make 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
Original file line number Diff line number Diff line change 22# useful for testing changes against all versions of python
33
44cd 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
119cd ..
You can’t perform that action at this time.
0 commit comments