Skip to content

Commit b1c24d3

Browse files
committed
Install dev extras for travis
1 parent 6aefb51 commit b1c24d3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python:
66
- '3.6'
77
- 'pypy3'
88
script:
9-
- pip install .
9+
- pip install .[dev]
1010
- coverage run --source flask_rest_jsonapi -m pytest -v
1111
after_success:
1212
- coveralls

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
setup_requires=['pytest-runner'],
3434
tests_require=['pytest'],
3535
extras_require={
36-
'tests': [
37-
'pytest',
38-
'coveralls',
39-
'coverage'
36+
'dev': [
37+
'pytest',
38+
'coveralls',
39+
'coverage'
4040
],
4141
'docs': 'sphinx'
4242
}

0 commit comments

Comments
 (0)