forked from fortran-lang/fprettify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_tests.py
executable file
·34 lines (29 loc) · 1.27 KB
/
run_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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import unittest
from fprettify.tests import FPrettifyTestCase, FAILED_FILE, RESULT_FILE
import fileinput
import io
import os
import sys
import argparse
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='Run tests', formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("-r", "--reset", action='store_true', default=False,
help="Reset test results to new results of failed tests")
args = parser.parse_args()
suite = unittest.TestLoader().loadTestsFromTestCase(FPrettifyTestCase)
unittest.TextTestRunner(verbosity=2).run(suite)
if args.reset and os.path.isfile(FAILED_FILE):
sep_str = ' : '
with io.open(FAILED_FILE, 'r', encoding='utf-8') as infile:
for failed_line in infile:
failed_content = failed_line.strip().split(sep_str)
for result_line in fileinput.input(RESULT_FILE, inplace=True):
result_content = result_line.strip().split(sep_str)
if result_content[0] == failed_content[0]:
sys.stdout.write(failed_line)
else:
sys.stdout.write(result_line)
os.remove(FAILED_FILE)