tornado/maint/vm
Ben Darnell e332a7de7e *: Remove Python2 __future__ imports throughout the codebase 2018-07-14 16:58:48 -04:00
..
freebsd Modernize freebsd vagrant config. 2014-08-31 23:33:15 -04:00
ubuntu12.04 Drop support for Python 3.2. 2015-11-06 18:53:11 -05:00
ubuntu14.04 Add an ubuntu 14.04 vagrant config; drop 12.10. 2014-07-19 11:18:24 -04:00
windows *: Remove Python2 __future__ imports throughout the codebase 2018-07-14 16:58:48 -04:00
README deprecate libcurl < 7.22.0 and remove Ubuntu 10.04 Vagrant configs 2016-09-06 11:28:28 +03:00
shared-setup.sh Install more python versions in the linux VM so we can test epoll.c too. 2011-12-30 00:49:19 -08:00

README

This directory contains virtual machine setup scripts for testing Tornado.

Requirements:

Vagrant (http://vagrantup.com) and VirtualBox (http://virtualbox.org).
Vagrant provides an easy download for Ubuntu images, base images for
other platforms are harder to find and can be built with
VeeWee (https://github.com/jedi4ever/veewee).

Usage:

cd to the appropriate directory and run `vagrant up`, then `vagrant ssh`.
From there, simply run `tox` to run the full test suite, or cd to /tornado
and test manually.  Afterwards, use `vagrant suspend` or `vagrant destroy`
to clean up.

Notes:

Python distutils (and therefore tox) assume that if the platform
supports hard links, they can be used in the Tornado source directory.
VirtualBox's shared folder filesystem does not support hard links (or
symlinks), so we have to use NFS shared folders instead.  (which has
the unfortunate side effect of requiring sudo on the host machine)