Showing
1 changed file
with
19 additions
and
0 deletions
.travis.yml
0 → 100644
| 1 | +language: python | ||
| 2 | +python: | ||
| 3 | + - "3.6" | ||
| 4 | + | ||
| 5 | +services: | ||
| 6 | + - docker | ||
| 7 | + | ||
| 8 | +before_install: | ||
| 9 | + - docker pull graykode/commit-autosuggestions | ||
| 10 | + - docker run -it -d -p 5000:5000 --restart always graykode/commit-autosuggestions | ||
| 11 | + | ||
| 12 | +# command to install dependencies | ||
| 13 | +install: | ||
| 14 | + - pip install -U pip | ||
| 15 | + - pip install -r requirements.txt | ||
| 16 | + - python setup.py install | ||
| 17 | + | ||
| 18 | +script: | ||
| 19 | + - python -m tests.test_suite; | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment