File tree Expand file tree Collapse file tree 6 files changed +35
-4
lines changed Expand file tree Collapse file tree 6 files changed +35
-4
lines changed Original file line number Diff line number Diff line change 1
1
.cache /
2
2
.eggs /
3
+ build /
3
4
dist /
4
5
graphene_mongo.egg-info /
5
6
* .pyc
Original file line number Diff line number Diff line change
1
+ language : python
2
+ python :
3
+ - " 2.7"
4
+ - " 3.3"
5
+ - " 3.4"
6
+ - " 3.5"
7
+ - " 3.6"
8
+ install :
9
+ pip install -r requirements.txt
10
+ script : make test
11
+ after_success :
12
+ - coveralls
13
+
Original file line number Diff line number Diff line change 2
2
@rm -f .coverage 2> /dev/null
3
3
@rm -rf .eggs 2> /dev/null
4
4
@rm -rf .cache 2> /dev/null
5
+ @rm -rf build 2> /dev/null
6
+ @rm -rf dist 2> /dev/null
7
+ @rm -rf graphene_mongo.egg-info 2> /dev/null
5
8
@find . -name " *.pyc" -delete
6
9
@find . -name " __pycache__" -delete
7
10
11
+ test : clean
12
+ py.test --cov=graphene_mongo
13
+
8
14
register-pypitest :
9
15
python setup.py register -r pypitest
10
16
11
- deploy-pypitest :
17
+ deploy-pypitest : clean
12
18
python setup.py sdist upload -r pypitest
13
19
14
20
register :
15
21
python setup.py register -r pypi
16
22
17
- deploy :
23
+ deploy : clean
18
24
python setup.py sdist upload -r pypi
19
25
Original file line number Diff line number Diff line change
1
+ [ ![ Build Status] ( https://travis-ci.org/abawchen/graphene-mongo.svg?branch=master )] ( https://travis-ci.org/abawchen/graphene-mongo ) [ ![ Coverage Status] ( https://coveralls.io/repos/github/abawchen/graphene-mongo/badge.svg?branch=master )] ( https://coveralls.io/github/abawchen/graphene-mongo?branch=master )
2
+
1
3
# Graphene-Mongo
2
4
3
5
A [ Mongoengine] ( https://mongoengine-odm.readthedocs.io/ ) integration for [ Graphene] ( http://graphene-python.org/ ) .
Original file line number Diff line number Diff line change
1
+ coveralls == 1.2.0
2
+ graphene == 2.0.1
3
+ iso8601 == 0.1.12
4
+ mongoengine == 0.15.0
5
+ mongomock == 3.8.0
6
+ pytest == 3.3.2
7
+ pytest-cov == 2.5.1
8
+ singledispatch == 3.4.0.3
9
+
Original file line number Diff line number Diff line change 19
19
'Intended Audience :: Developers' ,
20
20
'Topic :: Software Development :: Libraries' ,
21
21
'Programming Language :: Python :: 2.7' ,
22
- 'Programming Language :: Python :: 3' ,
23
22
'Programming Language :: Python :: 3.3' ,
24
23
'Programming Language :: Python :: 3.4' ,
25
24
'Programming Language :: Python :: 3.5' ,
25
+ 'Programming Language :: Python :: 3.6' ,
26
26
'Programming Language :: Python :: Implementation :: PyPy' ,
27
27
],
28
28
41
41
setup_requires = ['pytest-runner' ],
42
42
tests_require = [
43
43
'pytest>=3.3.2' ,
44
- 'mongomock>=3.8.0'
44
+ 'mongomock' ,
45
45
'mock'
46
46
],
47
47
test_suite = "graphene_mongo.tests" ,
You can’t perform that action at this time.
0 commit comments