File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
2
sudo : false
3
3
python :
4
- - " 2.7"
5
- - " 3.4"
6
- - " 3.5"
4
+ - 2.7
5
+ - 3.4
6
+ - 3.5
7
7
before_install :
8
- - " sh scripts/setup_arangodb.sh"
8
+ - sh scripts/setup_arangodb.sh
9
9
install :
10
- - " pip install ."
10
+ - pip install coverage
11
+ - pip install pytest
12
+ - pip install pytest-cov
13
+ - pip install python-coveralls
14
+ - python setup.py install
11
15
script :
12
- - " py.test -v"
16
+ - py.test --cov-report= --cov=arango tests/
17
+ after_success :
18
+ - coveralls
Original file line number Diff line number Diff line change 13
13
url = 'https://github.com/joowani/python-arango' ,
14
14
packages = find_packages (),
15
15
include_package_data = True ,
16
- install_requires = ['requests' , 'pytest' , ' six' ]
16
+ install_requires = ['requests' , 'six' ]
17
17
)
You can’t perform that action at this time.
0 commit comments