Skip to content

Commit

Permalink
committed hello test
Browse files Browse the repository at this point in the history
  • Loading branch information
lirazsiri committed Aug 3, 2011
1 parent 537ba21 commit 2466255
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/hello/.gitignore
@@ -0,0 +1 @@
sessions
16 changes: 16 additions & 0 deletions tests/hello/hello.py
@@ -0,0 +1,16 @@
#!/usr/bin/python
"""Print hello world"""

from cloudtask import Task

class T(Task):
DESCRIPTION = __doc__
TIMEOUT = 3
COMMAND = "/usr/local/bin/hello"
OVERLAY = 'overlay/'
WORKERS = '/tmp/workers'
SPLIT = 2
SESSIONS = 'sessions/'

if __name__ == "__main__":
T.main()

0 comments on commit 2466255

Please sign in to comment.