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.
1 parent 6aefb51 commit b1c24d3Copy full SHA for b1c24d3
.travis.yml
@@ -6,7 +6,7 @@ python:
6
- '3.6'
7
- 'pypy3'
8
script:
9
- - pip install .
+ - pip install .[dev]
10
- coverage run --source flask_rest_jsonapi -m pytest -v
11
after_success:
12
- coveralls
setup.py
@@ -33,10 +33,10 @@
33
setup_requires=['pytest-runner'],
34
tests_require=['pytest'],
35
extras_require={
36
- 'tests': [
37
- 'pytest',
38
- 'coveralls',
39
- 'coverage'
+ 'dev': [
+ 'pytest',
+ 'coveralls',
+ 'coverage'
40
],
41
'docs': 'sphinx'
42
}
0 commit comments