Re: Python unit tests - Unable to ru it with Python 2.6 or 2.7

2016-03-11 Thread Gayathri Murali
Thanks Josh. I am able to run with Python 2.7 explicitly by specifying --python-executables=python2.7. By default it checks only for Python2.6. Thanks Gayathri On Fri, Mar 11, 2016 at 10:35 AM, Josh Rosen wrote: > AFAIK we haven't actually broken 2.6 compatibility

Re: Python unit tests - Unable to ru it with Python 2.6 or 2.7

2016-03-11 Thread Josh Rosen
AFAIK we haven't actually broken 2.6 compatibility yet for PySpark itself, since Jenkins is still testing that configuration. I think the problem that you're seeing is that dev/run-tests / dev/run-tests-jenkins only work against Python 2.7+ right now. However, ./python/run-tests should be able to

Re: Python unit tests - Unable to ru it with Python 2.6 or 2.7

2016-03-11 Thread Holden Karau
So the run tests command allows you to specify the python version to test again - maybe specify python2.7 On Friday, March 11, 2016, Gayathri Murali wrote: > I do have 2.7 installed and unittest2 package available. I still see this > error : > > Please install

Re: Python unit tests - Unable to ru it with Python 2.6 or 2.7

2016-03-11 Thread Gayathri Murali
I do have 2.7 installed and unittest2 package available. I still see this error : Please install unittest2 to test with Python 2.6 or earlier Had test failures in pyspark.sql.tests with python2.6; see logs. Thanks Gayathri On Fri, Mar 11, 2016 at 10:07 AM, Davies Liu

Re: Python unit tests - Unable to ru it with Python 2.6 or 2.7

2016-03-11 Thread Davies Liu
Spark 2.0 is dropping the support for Python 2.6, it only work with Python 2.7, and 3.4+ On Thu, Mar 10, 2016 at 11:17 PM, Gayathri Murali wrote: > Hi all, > > I am trying to run python unit tests. > > I currently have Python 2.6 and 2.7 installed. I installed

Python unit tests - Unable to ru it with Python 2.6 or 2.7

2016-03-10 Thread Gayathri Murali
Hi all, I am trying to run python unit tests. I currently have Python 2.6 and 2.7 installed. I installed unittest2 against both of them. When I try to run /python/run-tests with Python 2.7 I get the following error : Please install unittest2 to test with Python 2.6 or earlier Had test