-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ahmed Soliman
committed
Sep 21, 2011
1 parent
aa2e91a
commit eeeabb0
Showing
6 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ syntax: glob | |
.DS_Store* | ||
**.coverage | ||
distribute-* | ||
test/nosetests* | ||
|
||
syntax: regexp | ||
^MANIFEST$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
#assuming the machine has virtualenv and pip installed | ||
|
||
virtualenv --no-site-packages environment | ||
|
||
export PYTHONPATH= | ||
|
||
pip install -E environment yolk nose | ||
|
||
pip install -E environment -r requirements.pip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mako >= 0.3.6 | ||
mongoengine == 0.5 | ||
routes >= 1.12.3 | ||
simplejson >= 2.1.2 | ||
celery >= 2.3.1 | ||
WebOb >= 1.0.8 | ||
Beaker >= 1.5.4 | ||
python-memcached >= 1.47 | ||
httplib2 | ||
psutil >= 0.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/bin/bash | ||
#source ../3rdparty/build/vars.sh | ||
export PYTHONPATH=$PYTHONPATH:`pwd` | ||
export PATH=$PATH:`pwd`/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
source ../environment/bin/activate | ||
source ../setenv.sh | ||
nosetests --with-xunit | ||
exit 0 |
This file was deleted.
Oops, something went wrong.