| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import subprocess |
||
| 2 | from fastest.file_handler import test_command |
||
| 3 | |||
| 4 | |||
| 5 | def execute_tests(source): |
||
| 6 | """ |
||
| 7 | Runs all tests within the tests directory |
||
| 8 | :param source: str |
||
| 9 | :return: None |
||
| 10 | """ |
||
| 11 | subprocess.call(test_command(source)) |
||
| 12 |