mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-20 04:44:12 -04:00
have travis-ci test against python 3.5 and 3.6 too
This commit is contained in:
parent
bdc0badec3
commit
f2227e6759
2 changed files with 6 additions and 3 deletions
|
@ -1,13 +1,15 @@
|
||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
- 3.4
|
- 3.4
|
||||||
|
- 3.5
|
||||||
|
- 3.6
|
||||||
sudo: required
|
sudo: required
|
||||||
dist: trusty
|
dist: trusty
|
||||||
before_install:
|
before_install:
|
||||||
- sudo pip install ansible==2.1.3.0
|
- sudo pip install ansible==2.1.3.0
|
||||||
install:
|
install:
|
||||||
- ansible-playbook --extra-vars="brozzler_pip_name=file://$TRAVIS_BUILD_DIR#egg=brozzler user=travis" --inventory-file=ansible/hosts-localhost ansible/playbook.yml
|
- ansible-playbook --extra-vars="brozzler_pip_name=file://$TRAVIS_BUILD_DIR#egg=brozzler user=travis" --inventory-file=ansible/hosts-localhost ansible/playbook.yml
|
||||||
- pip install $TRAVIS_BUILD_DIR 'warcprox>=2.1b1.dev71' pytest
|
- pip install $TRAVIS_BUILD_DIR 'warcprox>=2.1b1.dev87' pytest
|
||||||
script:
|
script:
|
||||||
- DISPLAY=:1 py.test -v tests
|
- DISPLAY=:1 py.test -v tests
|
||||||
after_failure:
|
after_failure:
|
||||||
|
|
5
setup.py
5
setup.py
|
@ -32,7 +32,7 @@ def find_package_data(package):
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.1b11.dev251',
|
version='1.1b11.dev252',
|
||||||
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',
|
||||||
|
@ -78,7 +78,7 @@ setuptools.setup(
|
||||||
extras_require={
|
extras_require={
|
||||||
'dashboard': ['flask>=0.11', 'gunicorn'],
|
'dashboard': ['flask>=0.11', 'gunicorn'],
|
||||||
'easy': [
|
'easy': [
|
||||||
'warcprox>=2.1b1.dev86',
|
'warcprox>=2.1b1.dev87',
|
||||||
'pywb',
|
'pywb',
|
||||||
'flask>=0.11',
|
'flask>=0.11',
|
||||||
'gunicorn'
|
'gunicorn'
|
||||||
|
@ -91,6 +91,7 @@ setuptools.setup(
|
||||||
'License :: OSI Approved :: Apache Software License',
|
'License :: OSI Approved :: Apache Software License',
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
'Topic :: Internet :: WWW/HTTP',
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
'Topic :: System :: Archiving',
|
'Topic :: System :: Archiving',
|
||||||
])
|
])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue