We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16cb7c7 commit adf8ba8Copy full SHA for adf8ba8
.travis.yml
@@ -1,12 +1,18 @@
1
language: python
2
sudo: false
3
python:
4
- - "2.7"
5
- - "3.4"
6
- - "3.5"
+ - 2.7
+ - 3.4
+ - 3.5
7
before_install:
8
- - "sh scripts/setup_arangodb.sh"
+ - sh scripts/setup_arangodb.sh
9
install:
10
- - "pip install ."
+ - pip install coverage
11
+ - pip install pytest
12
+ - pip install pytest-cov
13
+ - pip install python-coveralls
14
+ - python setup.py install
15
script:
- - "py.test -v"
16
+ - py.test --cov-report= --cov=arango tests/
17
+after_success:
18
+ - coveralls
setup.py
@@ -13,5 +13,5 @@
url='https://github.com/joowani/python-arango',
packages=find_packages(),
include_package_data=True,
- install_requires=['requests', 'pytest', 'six']
+ install_requires=['requests', 'six']
)
0 commit comments