Skip to content

Commit 77af22a

Browse files
committed
Extracted requirements for development from travis.yml to dev_requirements.txt
1 parent d7bfb08 commit 77af22a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ python:
77
- 3.5
88
cache: pip
99
install:
10-
- pip install pytest pytest-cov coveralls flake8
10+
- pip install -r ./dev_requirements.txt
1111
- pip install -e .
1212
script:
1313
- flake8 gql

dev_requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pytest
2+
pytest-cov
3+
coveralls
4+
flake8
5+
mock

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
'graphql-core>=0.5.0',
3030
'promise>=0.4.0'
3131
],
32-
tests_require=['pytest>=2.7.2'],
32+
tests_require=['pytest>=2.7.2', 'mock'],
3333
)

0 commit comments

Comments
 (0)