forked from ARMmbed/mbed-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle_tests.py
52 lines (40 loc) · 1.46 KB
/
circle_tests.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
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# Copyright (c) 2016 ARM Limited, All Rights Reserved
# SPDX-License-Identifier: Apache-2.0
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
# either express or implied.
import os
import sys
import subprocess
import shutil
import yaml
def rmtree_readonly(directory):
def remove_readonly(func, path, _):
os.chmod(path, stat.S_IWRITE)
func(path)
shutil.rmtree(directory, onerror=remove_readonly)
tests = None
with open("circle.yml", "r") as f:
types = yaml.load_all(f)
for t in types:
for k,v in t.items():
if k == 'test':
tests = v['override']
if tests:
cwd = os.path.abspath(os.path.dirname(__file__))
if os.path.exists(os.path.join(cwd, '.tests')):
rmtree_readonly(os.path.join(cwd, '.tests'))
os.mkdir(os.path.join(cwd, '.tests'))
for cmd in tests:
os.chdir(cwd)
print "\n----------\nEXEC: \"%s\" " % cmd
proc = subprocess.Popen(cmd, shell=True)
proc.communicate()
if proc.returncode != 0:
print "\n------------\nERROR: \"%s\"" % cmd
sys.exit(1)