mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-05-02 22:55:04 -04:00
parent
02e98f101d
commit
88d3d3b310
4 changed files with 20 additions and 20 deletions
|
@ -16,7 +16,7 @@ install:
|
||||||
- chromium-browser --version
|
- chromium-browser --version
|
||||||
- sudo service brozzler-worker restart
|
- sudo service brozzler-worker restart
|
||||||
script:
|
script:
|
||||||
- DISPLAY=:1 py.test -v tests
|
- DISPLAY=:1 py.test --tb=native -v tests
|
||||||
after_failure:
|
after_failure:
|
||||||
- chromium-browser --version
|
- chromium-browser --version
|
||||||
- sudo cat /var/log/upstart/warcprox.log
|
- sudo cat /var/log/upstart/warcprox.log
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.. image:: https://travis-ci.org/internetarchive/brozzler.svg?branch=master
|
.. image:: https://travis-ci.org/internetarchive/brozzler.svg?branch=1.4
|
||||||
:target: https://travis-ci.org/internetarchive/brozzler
|
:target: https://travis-ci.org/internetarchive/brozzler
|
||||||
|
|
||||||
.. |logo| image:: https://cdn.rawgit.com/internetarchive/brozzler/1.1b12/brozzler/dashboard/static/brozzler.svg
|
.. |logo| image:: https://cdn.rawgit.com/internetarchive/brozzler/1.1b12/brozzler/dashboard/static/brozzler.svg
|
||||||
|
|
34
setup.py
34
setup.py
|
@ -32,7 +32,7 @@ def find_package_data(package):
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.5.dev301',
|
version='1.4',
|
||||||
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',
|
||||||
|
@ -63,29 +63,29 @@ setuptools.setup(
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'PyYAML>=3.12',
|
'PyYAML>=3.12,<=3.12',
|
||||||
'youtube-dl>=2018.7.21',
|
'youtube-dl>=2018.7.21,<=2018.7.21',
|
||||||
'reppy==0.3.4',
|
'reppy==0.3.4',
|
||||||
'requests>=2.18.4',
|
'requests>=2.18.4,<=2.19.1',
|
||||||
'websocket-client>=0.39.0,!=0.49.0',
|
'websocket-client>=0.39.0,<=0.48.0',
|
||||||
'pillow>=5.2.0',
|
'pillow>=5.2.0,<=5.2.0',
|
||||||
'urlcanon>=0.1.dev23',
|
'urlcanon>=0.1.dev23,<=0.2.dev27',
|
||||||
'doublethink>=0.2.0.dev88',
|
'doublethink>=0.2.0.dev88,<=0.2.0.dev88',
|
||||||
'rethinkdb>=2.3',
|
'rethinkdb>=2.3,<=2.3.0.post6',
|
||||||
'cerberus>=1.0.1',
|
'cerberus>=1.0.1,<=1.0.1',
|
||||||
'jinja2>=2.10',
|
'jinja2>=2.10,<=2.10',
|
||||||
'cryptography>=2.3',
|
'cryptography>=2.3,<=2.3.1',
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
'dashboard': [
|
'dashboard': [
|
||||||
'flask>=0.11',
|
'flask>=0.11,<=1.0.2',
|
||||||
'gunicorn>=19.8.1'
|
'gunicorn>=19.8.1,<=19.8.1'
|
||||||
],
|
],
|
||||||
'easy': [
|
'easy': [
|
||||||
'warcprox>=2.4b2.dev173',
|
'warcprox>=2.4b2.dev173,<=2.4b3.dev183',
|
||||||
'pywb>=0.33.2,<2',
|
'pywb>=0.33.2,<2',
|
||||||
'flask>=0.11',
|
'flask>=0.11,<=1.0.2',
|
||||||
'gunicorn>=19.8.1'
|
'gunicorn>=19.8.1,<=19.8.1'
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|
|
@ -53,9 +53,9 @@ def test_run_command(capsys, cmd):
|
||||||
proc = subprocess.Popen(
|
proc = subprocess.Popen(
|
||||||
[cmd, '--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
[cmd, '--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
out, err = proc.communicate()
|
out, err = proc.communicate()
|
||||||
|
assert err == b''
|
||||||
assert out == ('brozzler %s - %s\n' % (
|
assert out == ('brozzler %s - %s\n' % (
|
||||||
brozzler.__version__, cmd)).encode('ascii')
|
brozzler.__version__, cmd)).encode('ascii')
|
||||||
assert err == b''
|
|
||||||
|
|
||||||
def test_rethinkdb_up():
|
def test_rethinkdb_up():
|
||||||
'''Check that rethinkdb is up and running.'''
|
'''Check that rethinkdb is up and running.'''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue