Commit 21837b80 authored by Jason Madden's avatar Jason Madden

Another fold

parent c604e22a
......@@ -188,6 +188,7 @@ $(PYPY3):
develop:
${PYTHON} scripts/travis.py fold_start install "Installing gevent"
ls -l $(BUILD_RUNTIMES)/snakepit/
echo python is at `which $(PYTHON)`
# First install a newer pip so that it can use the wheel cache
......@@ -198,6 +199,7 @@ develop:
# disables the cache.
# We need wheel>=0.26 on Python 3.5. See previous revisions.
python -m pip install -U -r dev-requirements.txt
${PYTHON} scripts/travis.py fold_end install
lint-py27: $(PY27)
PYTHON=python2.7.14 PATH=$(BUILD_RUNTIMES)/versions/python2.7.14/bin:$(PATH) make develop travis_test_linters
......
# -*- coding: utf-8 -*-
"""
# Support functions for travis
# See https://github.com/travis-ci/travis-rubies/blob/9f7962a881c55d32da7c76baefc58b89e3941d91/build.sh
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
......@@ -24,7 +23,7 @@ def fold_start():
sys.stdout.write('[33;1m')
sys.stdout.write(msg)
sys.stdout.write(chr(0o33))
sys.stdout.write('[33;0m')
sys.stdout.write('[33;0m\n')
@command
def fold_end():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment