diff --git a/.travis.yml b/.travis.yml index de799b69..7144d211 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,18 @@ language: python python: - "2.6" -install: pip install -r requirements/dev.txt --use-mirrors -script: nosetests +before_install: + - sudo apt-get update + - sudo apt-get install swig + +install: + - pip install --no-deps -r requirements/test.txt --use-mirrors + - cp solitude/settings/local.py{-dist,} + - mysqladmin create playdoh_app +script: ./manage.py test +notifications: + irc: + channels: + - "irc.mozilla.org#amo-bots" + on_succes: change + on_failure: always \ No newline at end of file diff --git a/bin/jenkins.sh b/bin/jenkins.sh index f9bc5784..051a5698 100755 --- a/bin/jenkins.sh +++ b/bin/jenkins.sh @@ -31,8 +31,8 @@ if [ ! -d "$WORKSPACE/vendor" ]; then fi source $VENV/bin/activate -pip install -q -r requirements/compiled.txt -pip install -q -r requirements/dev.txt +pip install -q --exists-action=w --no-deps -r requirements/compiled.txt +pip install -q --exists-action=w --no-deps -r requirements/test.txt cat > solitude/settings/local.py <