Skip to content

Commit ce85533

Browse files
committed
Improved package tests and updated promise req to 2.0.dev
1 parent 81bcf8c commit ce85533

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ before_install:
2121
source "$HOME/virtualenvs/pypy-$PYPY_VERSION/bin/activate"
2222
fi
2323
install:
24-
- pip install pytest-cov pytest-mock coveralls flake8 gevent==1.1b5 six>=1.10.0 promise>=0.4.2
25-
pytest-benchmark
26-
- pip install pytest==2.9.2
27-
- pip install -e .
24+
- pip install -e .[test]
2825
script:
2926
- py.test --cov=graphql graphql tests
3027
after_success:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@
2020

2121
install_requires = [
2222
'six>=1.10.0',
23-
'promise>=0.4.2'
23+
'promise>=2.0.dev'
2424
]
2525

2626
tests_requires = [
2727
'pytest==3.0.2',
2828
'pytest-django==2.9.1',
2929
'pytest-cov==2.3.1',
30+
'coveralls',
3031
'gevent==1.1rc1',
3132
'six>=1.10.0',
3233
'pytest-benchmark==3.0.0',

0 commit comments

Comments
 (0)