mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-20 04:44:12 -04:00
give vagrant vm enough memory so that tests pass consistently
This commit is contained in:
parent
2b0a47c914
commit
398871d46b
2 changed files with 6 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -32,7 +32,7 @@ def find_package_data(package):
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.1b8.dev124',
|
version='1.1b8.dev125',
|
||||||
description='Distributed web crawling with browsers',
|
description='Distributed web crawling with browsers',
|
||||||
url='https://github.com/internetarchive/brozzler',
|
url='https://github.com/internetarchive/brozzler',
|
||||||
author='Noah Levitt',
|
author='Noah Levitt',
|
||||||
|
|
5
vagrant/Vagrantfile
vendored
5
vagrant/Vagrantfile
vendored
|
@ -6,6 +6,11 @@ Vagrant.configure(2) do |config|
|
||||||
|
|
||||||
config.vm.synced_folder "..", "/brozzler"
|
config.vm.synced_folder "..", "/brozzler"
|
||||||
|
|
||||||
|
# bump up memory to avoid "can't start new thread" errors
|
||||||
|
config.vm.provider "virtualbox" do |v|
|
||||||
|
v.memory = 1024
|
||||||
|
end
|
||||||
|
|
||||||
config.vm.provision "ansible" do |ansible|
|
config.vm.provision "ansible" do |ansible|
|
||||||
ansible.inventory_path = "../ansible/hosts-vagrant"
|
ansible.inventory_path = "../ansible/hosts-vagrant"
|
||||||
ansible.playbook = "../ansible/playbook.yml"
|
ansible.playbook = "../ansible/playbook.yml"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue