forked from sahana/eden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.py
43 lines (32 loc) · 1.06 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/python
# The above line probably works for many people, but if not,
# check your python executable is correct.
# This script assumes it is in <app>/tests/ as nose.py
# and that there is a run.py sibling.
import sys
from os import system, getcwd, sep, chdir
from os.path import join, normpath, abspath, dirname, pardir as parent_directory, isabs
chdir(dirname(abspath(__file__)))
application_name = normpath(abspath(getcwd())).split(sep)[-1]
script_path = sys.argv[1]
if not isabs(script_path):
web2py_script_path = join("applications", application_name, script_path)
else:
web2py_script_path = script_path
command = " ".join(
[
sys.executable, # i.e. whatever python executable this is
join(
parent_directory, parent_directory,
"web2py.py"
),
"--shell=" + application_name,
"--import_models",
"--no-banner",
"--no-cron",
"--run ", web2py_script_path,
"--args"
] + map("\"%s\"".__mod__, sys.argv[2:])
)
#print command
sys.exit(system(command))