2 |
|
|
3 |
import py_compile |
import py_compile |
4 |
import sys |
import sys |
5 |
|
import os |
6 |
|
|
7 |
# Code to build .pyc from .py |
# Code to build .pyc from .py |
8 |
def build_py(target, source, env): |
def build_py(target, source, env): |
9 |
py_compile.compile(str(source[0]), str(target[0])) |
py_compile.compile(str(source[0]), str(target[0])) |
10 |
return None |
return None |
11 |
|
|
12 |
|
# Code to run unit_test executables |
13 |
|
def runUnitTest(target, source, env): |
14 |
|
app = str(source[0].abspath) |
15 |
|
if not os.system(app): |
16 |
|
open(str(target[0]),'w').write("PASSED\n") |
17 |
|
else: |
18 |
|
open(str(target[0]),'w').write("FAILED\n") |
19 |
|
return 1 |
20 |
|
return None |