Add extra memory to virtual machine and add coverage report to gitignore.

This commit is contained in:
Adrian Brink 2017-05-01 17:29:44 +02:00
parent 0be3480729
commit 2bf8c40cff
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -14,3 +14,4 @@ vendor
test/p2p/data/
test/logs
.glide
coverage.txt

2
Vagrantfile vendored
View File

@ -5,7 +5,7 @@ Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |v|
v.memory = 3072
v.memory = 4096
v.cpus = 2
end