blob: a5fb3f14e3dff91b1b9c17dea11170c90833be72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
language: python
python:
- "2.7"
env:
- DJANGO=1.5.7
- DJANGO=1.6.4
# command to install dependencies
install:
- pip install -q Django==$DJANGO --use-mirrors
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y scilab
# command to run tests
script:
- nosetests ./testapp/tests/
- python manage.py test
|