> On Tue, 3 Sep 2013 16:53:35 +0900 > YAMAMOTO Takashi <[email protected]> wrote: > >> this avoids interfering Travis CI's use of virtualenv. >> >> Signed-off-by: YAMAMOTO Takashi <[email protected]> >> --- >> .travis.yml | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/.travis.yml b/.travis.yml >> index d7c6953..7d2f191 100644 >> --- a/.travis.yml >> +++ b/.travis.yml >> @@ -4,7 +4,7 @@ python: >> - "2.7" >> >> install: >> - - "pip install -r tools/pip-requires --use-mirrors" >> + - "pip install -r tools/pip-requires -r tools/test-requires --use-mirrors" >> >> script: >> - - "./run_tests.sh -V" >> + - "./run_tests.sh -N" > > Why we need the above change? IIRC, we need virtualenv at Travis env.
travis ci automatically activates virtualenv before executing our scripts. (see the top of log) so we don't need to enable it again. it seems that our attempt interferes their virtualenv setup and end up to use system's default python, which is 2.7. grepping 2.6 log, you can see some occurrences of "2.7". YAMAMOTO Takashi > > ------------------------------------------------------------------------------ > Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! > Discover the easy way to master current and previous Microsoft technologies > and advance your career. Get an incredible 1,500+ hours of step-by-step > tutorial videos with LearnDevNow. Subscribe today and save! > http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk > _______________________________________________ > Ryu-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/ryu-devel ------------------------------------------------------------------------------ Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous Microsoft technologies and advance your career. Get an incredible 1,500+ hours of step-by-step tutorial videos with LearnDevNow. Subscribe today and save! http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
