Skip to content

Commit 9d92b3d

Browse files
committed
Fix some issues in travis and setup.py
1 parent 98fca41 commit 9d92b3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ before_install:
99
- pip install --user --upgrade pip
1010
install:
1111
- pip install --user coveralls
12-
- pip install --user tox
12+
- pip install --user -e .[test]
1313
script:
1414
- tox
1515
- coverage report -m

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@
106106
# $ pip install -e .[dev,test]
107107
extras_require={
108108
'dev': ['check-manifest'],
109-
'test': ['coverage'],
109+
'test': ['tox'],
110110
},
111111

112112
# packages=find_packages(),
113113
# include_package_data = True,
114114

115115
setup_requires=['pytest-runner'],
116-
tests_require=['pytest', 'coverage'],
116+
tests_require=['pytest'],
117117
)

0 commit comments

Comments
 (0)