Skip to content

Commit d04f3db

Browse files
committedMay 8, 2018
Revamp the library for 4.0.0.
1 parent 99a7269 commit d04f3db

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+16161
-14560
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88
*.coverage
99
.cache/
1010
tests/__pycache__/
11+
*.DS_Store
12+
venv

‎.travis.yml

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
language: python
21
sudo: false
2+
language: python
33
python:
44
- 2.7
55
- 3.4
66
- 3.5
77
- 3.6
8+
services:
9+
- docker
810
before_install:
9-
- sh scripts/setup_arangodb.sh
11+
- docker run --name arango -d -p 8529:8529 -e ARANGO_ROOT_PASSWORD=passwd arangodb/arangodb:3.3.8
12+
- docker cp tests/static/service.zip arango:/tmp/service.zip
1013
install:
11-
- pip install coverage
12-
- pip install pytest
13-
- pip install pytest-cov
14-
- pip install python-coveralls
15-
- python setup.py install
14+
- pip install flake8 mock pytest pytest-cov python-coveralls sphinx
15+
- pip install .
1616
script:
17-
- py.test --cov-report= --cov=arango tests/
17+
- python -m flake8
18+
- python -m sphinx -b doctest docs build
19+
- py.test --complete -s -v --cov=arango
1820
after_success:
1921
- coveralls
20-
- pkill -9 -f arango

0 commit comments

Comments
 (0)