mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-02-23 16:19:49 -05:00
fix tests
This commit is contained in:
parent
5331aca33f
commit
8505720c41
@ -5,6 +5,7 @@
|
||||
become: true
|
||||
- name: install pywb in virtualenv
|
||||
pip: name=pywb
|
||||
version=0.33.2
|
||||
virtualenv={{venv_root}}/pywb-ve34
|
||||
virtualenv_python=python3.4
|
||||
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(
|
||||
name='brozzler',
|
||||
version='1.1b12.dev281',
|
||||
version='1.1b12.dev282',
|
||||
description='Distributed web crawling with browsers',
|
||||
url='https://github.com/internetarchive/brozzler',
|
||||
author='Noah Levitt',
|
||||
|
@ -661,11 +661,10 @@ def test_warcprox_outage_resiliency(httpd):
|
||||
opts = warcprox.Options()
|
||||
opts.address = '0.0.0.0'
|
||||
opts.port = 0
|
||||
opts.rethinkdb_services_url = 'rethinkdb://localhost/brozzler/services'
|
||||
|
||||
warcprox1 = warcprox.controller.WarcproxController(
|
||||
service_registry=svcreg, options=opts)
|
||||
warcprox2 = warcprox.controller.WarcproxController(
|
||||
service_registry=svcreg, options=opts)
|
||||
warcprox1 = warcprox.controller.WarcproxController(opts)
|
||||
warcprox2 = warcprox.controller.WarcproxController(opts)
|
||||
warcprox1_thread = threading.Thread(
|
||||
target=warcprox1.run_until_shutdown, name='warcprox1')
|
||||
warcprox2_thread = threading.Thread(
|
||||
|
Loading…
x
Reference in New Issue
Block a user