blob: f1c4dabaaf27ec2cdfcc38f93e5c9e1caaa82e08 (
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"
- "3.5"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y scilab
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
# command to install dependencies
install:
- pip install -r requirements/requirements-common.txt
- python setup.py develop
# command to run tests
script:
- python manage.py test -v 2 yaksh
- python manage.py test -v 2 yaksh.live_server_tests.load_test
|