From e9c760631840747745013b70823915c53a7ce926 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Mon, 20 Mar 2017 12:14:11 -0700 Subject: [PATCH] oops remove pdb call --- setup.py | 2 +- tests/test_brozzling.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index fca213b..dbd9aa8 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def find_package_data(package): setuptools.setup( name='brozzler', - version='1.1b9.dev209', + version='1.1b9.dev210', description='Distributed web crawling with browsers', url='https://github.com/internetarchive/brozzler', author='Noah Levitt', diff --git a/tests/test_brozzling.py b/tests/test_brozzling.py index 38eb9d2..b033cfd 100644 --- a/tests/test_brozzling.py +++ b/tests/test_brozzling.py @@ -143,8 +143,8 @@ def test_js_dialogs(httpd): # 'http://localhost:%s/site4/print.html' % httpd.server_port) def test_page_videos(httpd): - # test depends on behavior of youtube-dl, could fail and need to be - # adjusted on youtube-dl updates + # test depends on behavior of youtube-dl and chromium, could fail and need + # to be adjusted on youtube-dl or chromium updates chrome_exe = brozzler.suggest_default_chrome_exe() worker = brozzler.BrozzlerWorker(None) chrome_exe = brozzler.suggest_default_chrome_exe() @@ -152,7 +152,6 @@ def test_page_videos(httpd): page = brozzler.Page(None, { 'url':'http://localhost:%s/site6/' % httpd.server_port}) with brozzler.Browser(chrome_exe=chrome_exe) as browser: - import pdb; pdb.set_trace() worker.brozzle_page(browser, site, page) assert page.videos assert len(page.videos) == 2