Hi, On Fri, Jul 26, 2013 at 11:42 AM, Aaron Meurer <[email protected]> wrote: > It was just pointed out to me that you can restart a Travis build by > clicking on the gear icon in the Travis build page and choosing > "Restart built". You can also restart individual jobs. > > I think at this point, Python 3 with external dependencies (the second > to last job) always times out, because numpy and matplotlib take too > long to compile. But the others might finish if you restart them.
If you want to avoid very long travis setup and you don't mind testing only on on the python 2 and python 3 the virtual machine can install with apt-get, then you can install the dependencies with apt-get install, which is of course much quicker: https://github.com/nipy/nipy/blob/master/.travis.yml We use travis for nipy as a quick first pass of one python 2 and one python 3, and then do more comprehensive tests of master with different pythons on our buildbots. Cheers, Matthew -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out.
