diff options
author | Prabhu Ramachandran | 2017-03-03 18:33:57 +0530 |
---|---|---|
committer | GitHub | 2017-03-03 18:33:57 +0530 |
commit | 27fa11322e4b6ca2477a5979884e8e77388d8705 (patch) | |
tree | b7f0e215ba5070ed6a9837739f753ed1ebb29ab0 /.travis.yml | |
parent | b001bc98db69e1ef1926b0f2103bf5a291682f93 (diff) | |
parent | ea58f85532a6a5cc42780d90c907cfb6e8a6d95d (diff) | |
download | online_test-27fa11322e4b6ca2477a5979884e8e77388d8705.tar.gz online_test-27fa11322e4b6ca2477a5979884e8e77388d8705.tar.bz2 online_test-27fa11322e4b6ca2477a5979884e8e77388d8705.zip |
Merge pull request #231 from ankitjavalkar/fix-selen-test
Fix selenium tests:
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 5b8ff2f..f1c4dab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,6 @@ python: - "2.7" - "3.5" -env: - - DJANGO=1.9.5 - -# command to install dependencies -install: - - pip install git+https://github.com/FOSSEE/online_test.git#egg=yaksh-0.1 - - pip install -q Django==$DJANGO - before_install: - sudo apt-get update -qq - sudo apt-get install -y scilab @@ -19,7 +11,12 @@ before_install: - "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 + - python manage.py test -v 2 yaksh.live_server_tests.load_test |