Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c17fc5f

Browse files
committedAug 17, 2016
Revamp the entire library for ArangoDB 3.x
1 parent 7fb23d6 commit c17fc5f

Some content is hidden

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

90 files changed

+13109
-6474
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@
55
*build/
66
*dist/
77
*.coverage
8+
.coveragerc
9+
.cache/
10+
tests/__pycache__/

‎.travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ language: python
22
sudo: false
33
python:
44
- "2.7"
5+
- "3.4"
6+
- "3.5"
57
before_install:
68
- "sh scripts/setup_arangodb.sh"
79
install:
810
- "pip install ."
9-
script: nosetests
10-
11+
script:
12+
- "py.test -v"

0 commit comments

Comments
 (0)
Please sign in to comment.