File tree Expand file tree Collapse file tree 5 files changed +16
-4
lines changed Expand file tree Collapse file tree 5 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 7
7
- " 3.6"
8
8
install :
9
9
pip install -r requirements.txt
10
- script : pytest
10
+ script : make test
11
+ after_success :
12
+ - coveralls
11
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
1
2
graphene == 2.0.1
2
3
iso8601 == 0.1.12
3
4
mongoengine == 0.15.0
4
5
mongomock == 3.8.0
5
6
pytest == 3.3.2
7
+ pytest-cov == 2.5.1
6
8
singledispatch == 3.4.0.3
7
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
You can’t perform that action at this time.
0 commit comments