Skip to content

Commit 3f0ae48

Browse files
committed
Finished configuration of Travis and COdecov.io
1 parent 73053a7 commit 3f0ae48

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

pymaps/utils.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ def position_to_latLng(position):
66
return '{{lat: {}, lng: {}}}'.format(lat, lng)
77

88

9-
def jsbool(value):
10-
return str(value).lower
11-
12-
13-
149
def calc_avg_position(coordinates):
1510
'''
1611
Calculate the average position of a list of lat, long coordinates.

requirements-dev.txt renamed to requirements-test.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ codecov
22
requests
33
pytest
44
pytest-cov
5+
pytest-runner

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
install_requires=install_requires,
4444
setup_requires=['pytest-runner'],
4545
tests_require=[
46-
'pytest', 'pytest-runner', 'requests', 'codecov', 'pytest-cov'
46+
'pytest', 'pytest-cov', 'requests',
4747
],
4848
include_package_data=True
4949
)

0 commit comments

Comments
 (0)