mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-07-21 14:09:00 -04:00
fix tests
This commit is contained in:
parent
5331aca33f
commit
8505720c41
3 changed files with 5 additions and 5 deletions
|
@ -5,6 +5,7 @@
|
||||||
become: true
|
become: true
|
||||||
- name: install pywb in virtualenv
|
- name: install pywb in virtualenv
|
||||||
pip: name=pywb
|
pip: name=pywb
|
||||||
|
version=0.33.2
|
||||||
virtualenv={{venv_root}}/pywb-ve34
|
virtualenv={{venv_root}}/pywb-ve34
|
||||||
virtualenv_python=python3.4
|
virtualenv_python=python3.4
|
||||||
extra_args='--no-input --upgrade --pre --cache-dir=/tmp/pip-cache'
|
extra_args='--no-input --upgrade --pre --cache-dir=/tmp/pip-cache'
|
||||||
|
|
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.1b12.dev281',
|
version='1.1b12.dev282',
|
||||||
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',
|
||||||
|
|
|
@ -661,11 +661,10 @@ def test_warcprox_outage_resiliency(httpd):
|
||||||
opts = warcprox.Options()
|
opts = warcprox.Options()
|
||||||
opts.address = '0.0.0.0'
|
opts.address = '0.0.0.0'
|
||||||
opts.port = 0
|
opts.port = 0
|
||||||
|
opts.rethinkdb_services_url = 'rethinkdb://localhost/brozzler/services'
|
||||||
|
|
||||||
warcprox1 = warcprox.controller.WarcproxController(
|
warcprox1 = warcprox.controller.WarcproxController(opts)
|
||||||
service_registry=svcreg, options=opts)
|
warcprox2 = warcprox.controller.WarcproxController(opts)
|
||||||
warcprox2 = warcprox.controller.WarcproxController(
|
|
||||||
service_registry=svcreg, options=opts)
|
|
||||||
warcprox1_thread = threading.Thread(
|
warcprox1_thread = threading.Thread(
|
||||||
target=warcprox1.run_until_shutdown, name='warcprox1')
|
target=warcprox1.run_until_shutdown, name='warcprox1')
|
||||||
warcprox2_thread = threading.Thread(
|
warcprox2_thread = threading.Thread(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue