summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 0fad5593dd85fad7ea1cbf6287f5e462bd0b8fc9 (plain)
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
41
42
43
44
45
46
47
language: python

python:
  - "3.6"

services:
  - xvfb
  - redis-server

before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -y scilab
  - sudo apt-get install -y r-base
  - export DISPLAY=:99.0

# command to install dependencies
install:
  - pip install -r requirements/requirements-common.txt
  - pip install codecov
  - python setup.py develop

before_script:
  - python manage.py makemigrations notifications_plugin
  - python manage.py makemigrations stats
  - python manage.py makemigrations
  - python manage.py migrate auth
  - python manage.py migrate

# command to run tests and coverage
script:
  - coverage erase
  - coverage run -p manage.py test -v 2 yaksh
  - coverage run -p manage.py test -v 2 stats
  - coverage run -p manage.py test -v 2 grades
  - coverage run -p manage.py test -v 2 yaksh.live_server_tests.load_test
  - coverage run -p manage.py test -v 2 api

after_success:
  - coverage combine
  - coverage report
  - codecov

dist:
  xenial

addons:
  firefox: "46.0"