Skip to content
This repository has been archived by the owner on Jan 25, 2018. It is now read-only.

Commit

Permalink
docs and test update
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithan committed Oct 2, 2012
1 parent 451f0ab commit c633e66
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
17 changes: 15 additions & 2 deletions .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
4 changes: 2 additions & 2 deletions bin/jenkins.sh
Expand Up @@ -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 <<SETTINGS
from solitude.settings.base import *
Expand Down
4 changes: 2 additions & 2 deletions docs/topics/setup.rst
Expand Up @@ -27,12 +27,12 @@ Install

From github::

git clone --recursive git://github.com/mozilla/solitude.git
git clone git://github.com/mozilla/solitude.git

If you used a virtualenv_ activate it and compile some playdoh dependencies::

cd solitude
pip install -r requirements/compiled.txt
pip install -r requirements/dev.txt

Setup settings::

Expand Down
1 change: 1 addition & 0 deletions solitude/settings/base.py
Expand Up @@ -12,6 +12,7 @@
INSTALLED_APPS = (
'aesfield',
'funfactory',
'django_nose',
'django_statsd',
'solitude',
)
Expand Down

0 comments on commit c633e66

Please sign in to comment.