File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11language : python
22
33python :
4+ - " 3.6"
5+ - " 3.5"
46 - " 3.4"
57 - " 3.3"
68 - " 2.7"
79 - " 2.6"
810
911sudo : false
1012
11- # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
13+ # command to install dependencies, e.g. pip install -r requirements.txt
1214# These packages only exist on Ubuntu 13.04 and newer:
1315# No dependencies currently unless using Python 2.6.
1416
1517install :
16- - if [[ $TRAVIS_PYTHON_VERSION == 2.6* ]]; then pip install -r requirements_py26.txt --use-mirrors ; fi
18+ - if [[ $TRAVIS_PYTHON_VERSION == 2.6* ]]; then pip install -r requirements_py26.txt; fi
1719 - python setup.py install
1820
1921# command to run tests, e.g. python setup.py test
Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ def test_builtins(self):
319319 import builtins
320320 self .assertTrue (hasattr (builtins , 'tuple' ))
321321
322- # @unittest.skip("ssl support has been stripped out for now ...")
322+ @unittest .skip ("ssl redirect support on pypi isn't working as expected for now ..." )
323323 def test_urllib_request_ssl_redirect (self ):
324324 """
325325 This site redirects to https://...
You can’t perform that action at this time.
0 commit comments