Skip to content

Commit 2a55d93

Browse files
committed
Remove the output file after testing
1 parent b68a258 commit 2a55d93

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

script/test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55
import sys
66

7-
from lib.util import atom_gyp
7+
from lib.util import atom_gyp, rm_rf
88

99

1010
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
@@ -40,6 +40,8 @@ def main():
4040
output_to_file = os.environ['OUTPUT_TO_FILE']
4141
with open(output_to_file, 'r') as f:
4242
print f.read()
43+
rm_rf(output_to_file)
44+
4345

4446
return returncode
4547

0 commit comments

Comments
 (0)