forked from gunthercox/ChatterBot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (32 loc) · 738 Bytes
/
.travis.yml
File metadata and controls
40 lines (32 loc) · 738 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
35
36
37
38
39
40
language: python
python:
- '2.7'
- '3.4'
- '3.5'
os:
- linux
- windows
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
install:
- pip install .
- pip install -r dev-requirements.txt
- pip install -r requirements.txt
- pip install -q Django==$DJANGO_VERSION
addons:
code_climate:
repo_token: 3ec30a156224df0f59620967241d9659086e918fd824f4f69b8ce7b55b5a590f
services:
- mongodb
script:
- flake8
- python runtests.py
- python examples/django_app/manage.py test examples/django_app/
- nosetests --with-coverage --cover-package=chatterbot
- nosetests examples
- sphinx-build -nW -b html ./docs/ ./build/
- python tests/benchmarks.py
after_success:
- coveralls