-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (29 loc) · 719 Bytes
/
Copy path.travis.yml
File metadata and controls
34 lines (29 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: python
os:
- linux
sudo: required
services:
- docker
python:
- "3.7"
- "3.8"
env:
- PARALLELIZE=true
before_install:
- python --version
- pip install -U pip
- pip install --default-timeout 60 setuptools coverage coveralls pytest nose-timer && export HAS_COVERALLS=1
# -
# - docker pull tinkerpop/gremlin-server
# - docker run -d --name gremlin-server -d -p 8182:8182 tinkerpop/gremlin-server
# - docker ps -a
install:
- make install
- make start start-gremlin
# - pip install -r requirements.txt
# - pip install ".[test]" . # install package + test dependencies
script:
- make test
# - pytest --cov=rdf2g test
after_success:
- if [[ $HAS_COVERALLS ]] ; then coveralls ; fi