<div dir="ltr">Hi all,<div><br></div><div>Today I found a cool new free service that the readers of this list might be interested in.</div><div><br></div><div>Take a look at this page:</div><div><br></div><div><a href="https://magnum-ci.com/">https://magnum-ci.com/</a></div>

<div><br></div><div>This is a free continuous integration service that supports bitbucket and mercurial repositories. If you're familiar with Travis CI, this is very similar, but they don't require you host your code using git on github.</div>

<div><br></div><div>It looks like they're mostly in the business of testing ruby and node webapps, but it's still possible to set up a scientific python stack using anaconda and then test python code.</div><div><br>

</div><div>To get a basic yt testing setup working, I used the following configuration:</div><div><br></div><div>Dependency installation:</div><div><br></div><div><div>wget <a href="http://09c8d0b2229f813c1b93-c95ac804525aac4b6dba79b00b39d1d3.r79.cf1.rackcdn.com/Anaconda-1.9.1-Linux-x86_64.sh">http://09c8d0b2229f813c1b93-c95ac804525aac4b6dba79b00b39d1d3.r79.cf1.rackcdn.com/Anaconda-1.9.1-Linux-x86_64.sh</a></div>

<div>chmod +x ./<a href="http://Anaconda-1.9.1-Linux-x86_64.sh">Anaconda-1.9.1-Linux-x86_64.sh</a></div><div>./<a href="http://Anaconda-1.9.1-Linux-x86_64.sh">Anaconda-1.9.1-Linux-x86_64.sh</a> -b</div><div>cd /home/magnum/yt-ngoldbaum</div>

<div>PYTHONPATH= PATH=/home/magnum/anaconda/bin:$PATH python setup.py develop</div></div><div><br></div><div>Testing suite commands:</div><div><br></div><div><div>cd /home/magnum/yt-ngoldbaum</div><div>PYTHONPATH= PATH=/home/magnum/anaconda/bin:$PATH nosetests</div>

</div><div><br></div><div>Unfortuantely it's not perfect - there are some resource limitations that prevent it from running the full yt unit tests.  That said, I've contacted their support and they're interested in seeing if they can configure something on their end to prevent the resource limits from kicking in in this case.</div>

<div><br></div><div>In any case, I think this is generically useful - particularly among this group, who tend to use mercurial and bitbucket a lot more often than a random sample of developers.  If you want to test a small side project, this might be just what you need.</div>

<div><br></div><div>Hope that's helpful,</div><div><br></div><div>Nathan</div></div>