1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 08:04:49 +01:00

setup: fix pywb py3 version to 0.30.0, add coverage for recorder

This commit is contained in:
Ilya Kreymer 2016-03-11 11:11:43 -08:00
parent 3b3e190cf4
commit 2003925b75
2 changed files with 3 additions and 4 deletions

View File

@ -5,7 +5,6 @@ omit =
*.html
*.js
*.css
pywb/__init__.py
[report]
exclude_lines =

View File

@ -14,7 +14,7 @@ class PyTest(TestCommand):
import pytest
import sys
import os
cmdline = ' --cov-config .coveragerc --cov webagg/ -vv webagg/test/'
cmdline = ' --cov-config .coveragerc --cov ./ -vv webagg/test/ recorder/test/'
errcode = pytest.main(cmdline)
sys.exit(errcode)
@ -33,10 +33,10 @@ setup(
'recorder',
],
install_requires=[
'pywb==1.0b',
'pywb==0.30.0',
],
dependency_links=[
'git+https://github.com/ikreymer/pywb.git@py3#egg=pywb-1.0b-py3',
'git+https://github.com/ikreymer/pywb.git@py3#egg=pywb-0.30.0-py3',
],
zip_safe=True,
entry_points="""