-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
42PyChecker/PyChecker/testing_suite/fillit_checker.py
Lines 24 to 29 in 4faf74d
| # @todo: Find a way to supress colors from output | |
| result = subprocess.run(['bash', root_path + "/testing_suites/fillit_checker/test.sh", project_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT).stdout.decode('utf-8') | |
| with open(root_path + '/.myfillitchecker', 'w+') as file: | |
| file.write(result) | |
| result = subprocess.run(['bash', root_path + '/scripts/clean_logfiles.sh', root_path + '/.myfillitchecker'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT).stdout.decode('utf-8') | |
| with open(root_path + '/.myfillitchecker', 'r') as file: |