diff options
-rw-r--r-- | .travis.yml | 13 | ||||
-rw-r--r-- | setup.py | 1 |
2 files changed, 5 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index da71f7a..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,6 +11,11 @@ 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 @@ -12,7 +12,6 @@ install_requires = [ 'pytz==2016.4', 'python-social-auth==0.2.19', 'tornado', - 'selenium==2.53.6', ] setup( |