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 135dea0 commit 610e473Copy full SHA for 610e473
.gitignore
@@ -1,5 +1,6 @@
1
.cache/
2
.eggs/
3
+build/
4
dist/
5
graphene_mongo.egg-info/
6
*.pyc
.travis.yml
@@ -6,5 +6,7 @@ python:
- "3.4"
7
- "3.5"
8
- "3.6"
9
-script: python setup.py test
+install:
10
+ pip install -r requirements.txt
11
+script: pytest
12
requirements.txt
@@ -0,0 +1,5 @@
+graphene==2.0.1
+iso8601==0.1.12
+mongoengine==0.15.0
+mongomock==3.8.0
+
setup.py
@@ -41,7 +41,7 @@
41
setup_requires=['pytest-runner'],
42
tests_require=[
43
'pytest>=3.3.2',
44
- 'mongomock>=3.8.0',
+ 'mongomock',
45
'mock'
46
],
47
test_suite="graphene_mongo.tests",
0 commit comments