Skip to content

Commit c8ac291

Browse files
committed
[TMP] Fix build until move to tox
1 parent ee70d5c commit c8ac291

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
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
install:
1010
- |
1111
if [ "$TEST_TYPE" = build ]; then
12-
pip install pytest==3.0.2 pytest-cov pytest-benchmark coveralls six mock sqlalchemy_utils
12+
pip install pytest>=3.6 pytest-cov pytest-benchmark coveralls six mock sqlalchemy_utils
1313
pip install -e .
1414
python setup.py develop
1515
elif [ "$TEST_TYPE" = lint ]; then

setup.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"graphene>=2.1.3",
1616
"SQLAlchemy",
1717
"singledispatch>=3.4.0.3",
18+
"rx<3.0.0",
1819
]
1920
try:
2021
import enum
@@ -48,5 +49,13 @@
4849
packages=find_packages(exclude=["tests"]),
4950
install_requires=requirements,
5051
setup_requires=["pytest-runner"],
51-
tests_require=["pytest>=2.7.2", "mock", "sqlalchemy_utils"],
52+
tests_require=[
53+
"pytest>=3.6",
54+
"mock",
55+
"sqlalchemy_utils",
56+
"pytest-cov",
57+
"pytest-benchmark",
58+
"coveralls",
59+
"six",
60+
],
5261
)

0 commit comments

Comments
 (0)