blob: 6a4c8cf68c32c21bc98afbf34de3e7e4cc243348 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
language: python
python:
- "2.7"
env:
- DJANGO=1.6.4
- DJANGO=1.9
# command to install dependencies
install:
- pip install git+https://github.com/FOSSEE/online_test.git#egg=yaksh-0.1
- pip install -q Django==$DJANGO --use-mirrors
- pip install -q pytz==2016.4
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y scilab
# command to run tests
script:
- python manage.py test yaksh
|