We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 91da733 + 1b8a03e commit ff0c7e5Copy full SHA for ff0c7e5
.gitignore
@@ -5,3 +5,7 @@
5
build
6
dist
7
scrapely.egg-info
8
+
9
+# coverage reports
10
+.coverage
11
+.coverage.*
.travis.yml
@@ -1,13 +1,20 @@
1
language: python
2
python: 2.7
3
4
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
install:
- pip install cython
-- pip install -U tox
+- pip install -U tox codecov
12
13
script: tox
14
15
+after_success:
16
+ - codecov
17
18
notifications:
19
irc:
20
use_notice: true
tox.ini
@@ -17,6 +17,9 @@ deps =
commands =
pip install -e .
nosetests \
+ --with-coverage \
21
+ --cover-package=scrapely \
22
+ --cover-branches \
23
--with-doctest \
24
--with-doctest-ignore-unicode \
25
--doctest-options='+ELLIPSIS,+IGNORE_UNICODE' \
0 commit comments