.travis.yml 425 Bytes
language: python
python:
  - "3.6"

env:
  - LANGUAGE="py"

services:
  - docker

before_install:
  - docker pull graykode/commit-autosuggestions:${LANGUAGE}
  - docker run -it -d -p 5000:5000 --restart always graykode/commit-autosuggestions:${LANGUAGE}

# command to install dependencies
install:
  - pip install -U pip
  - pip install -r requirements.txt
  - python setup.py install

script:
  - python -m tests.test_suite;