summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bestwalter <oliver@bestwalter.de>2018-07-18 12:30:31 +0200
committerBernát Gábor <gaborjbernat@gmail.com>2018-07-18 11:30:31 +0100
commit66bbfefbfb0fbb17d118391ad7bee52517fcbbd5 (patch)
treecca83c2e20ef927c2f861f27701562ab4c5adfa2
parentb6bcd278640a13f3b561eadc8b99e788f2ea47c7 (diff)
downloadtox-git-66bbfefbfb0fbb17d118391ad7bee52517fcbbd5.tar.gz
Using vagrant is only a maintenance burden with no real value for devs (#919)
This hung around unused long enough. Having this a part of the project creates the illusion this should work in all cases and the box is always current, which is both untrue (does not really work from Windows and the box was last updated last year). closes #524
-rw-r--r--.gitignore1
-rw-r--r--Vagrantfile34
2 files changed, 0 insertions, 35 deletions
diff --git a/.gitignore b/.gitignore
index 3e3ea156..b019e396 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,3 @@
-.vagrant
*.pyc
*.pyo
*.swp
diff --git a/Vagrantfile b/Vagrantfile
deleted file mode 100644
index 3c936c3a..00000000
--- a/Vagrantfile
+++ /dev/null
@@ -1,34 +0,0 @@
-<<-DOC
-Start a virtualbox image with
- * all supported interpreters installed
- * tox installed
- * this folder mapped read/writable to /vagrant
- * convenient way to ssh into the box
-
-This should work from Windows, macOS and Linux.
-
-To run tests in the box do:
-
- $ cd </path/to/where/this/file/is>
- $ vagrant up arch
- $ vagrant ssh arch
- $ tox
-
-Prerequisites: https://www.vagrantup.com/ and https://www.virtualbox.org/
-
-**NOTE** When sshing into vagrant all .pyc files in this folder will be removed
-automatically. This is necessary to avoid an ImportMismatchError in pytest.
-If you switch between Host and guests, running tests on both you have to
-remove all .pyc files in between runs.
-
-For now there is only an Arch Linux box provided. More to come.
-DOC
-
-Vagrant.configure("2") do |config|
- config.vm.define :arch do |arch|
- arch.vm.box = "obestwalter/bindlestiff-arch-linux"
- arch.vm.provider "virtualbox" do |vb|
- vb.memory = "2048"
- end
- end
-end