File tree 4 files changed +11
-4
lines changed 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ python:
10
10
- " pypy"
11
11
12
12
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
13
- install : pip install . pytest
13
+ install : pip install . pytest coveralls pytest-cov
14
14
15
15
# command to run tests, e.g. python setup.py test
16
- script : py.test
16
+ script : py.test --cov fuzzyfinder tests
17
17
18
18
notifications :
19
19
webhooks :
@@ -22,3 +22,6 @@ notifications:
22
22
on_success : change # options: [always|never|change] default: always
23
23
on_failure : always # options: [always|never|change] default: always
24
24
on_start : false # default: false
25
+
26
+ after_success :
27
+ coveralls
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ test-all:
44
44
tox
45
45
46
46
coverage :
47
- coverage run --source fuzzyfinder setup.py test
47
+ py.test --cov fuzzyfinder tests
48
48
coverage report -m
49
49
coverage html
50
50
open htmlcov/index.html
58
58
open docs/_build/html/index.html
59
59
60
60
release : clean
61
+ python setup.py register
61
62
python setup.py sdist upload
62
63
python setup.py bdist_wheel upload
63
64
Original file line number Diff line number Diff line change 2
2
3
3
__author__ = 'Amjith Ramanujam'
4
4
__email__ = 'amjith.r@gmail.com'
5
- __version__ = '0.1 .0'
5
+ __version__ = '0.2 .0'
6
6
7
7
__all__ = []
8
8
Original file line number Diff line number Diff line change
1
+ pytest
2
+ pytest-cov
3
+ coveralls
1
4
wheel == 0.23.0
You can’t perform that action at this time.
0 commit comments