Skip to content

Commit

Permalink
pony_build/tests cleanup and path fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Jan 16, 2010
1 parent ea86a23 commit 52c653b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ results.pickle
build
dist
pony_build.egg-info
tests/tests.db
pony_build/tests/tests.db
.files
2 changes: 2 additions & 0 deletions pony_build/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#

3 changes: 3 additions & 0 deletions pony_build/tests/run.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
if __name__ == '__main__':
import nose
nose.run()
2 changes: 1 addition & 1 deletion pony_build/tests/test_xmlrpc_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

###
import sys
clientlib = os.path.join(os.path.dirname(__file__), '../client')
clientlib = os.path.join(os.path.dirname(__file__), '..', '..', 'client')
clientlib = os.path.abspath(clientlib)
sys.path.insert(0, clientlib)

Expand Down

0 comments on commit 52c653b

Please sign in to comment.