(workspace)
| 850 | |
| 851 | |
| 852 | def PyTests(workspace): |
| 853 | result = True |
| 854 | for script in FindTests(workspace): |
| 855 | print('Running ' + script) |
| 856 | result &= subprocess.call(['vpython3', script], stdout=subprocess.PIPE) == 0 |
| 857 | |
| 858 | return result |
| 859 | |
| 860 | |
| 861 | def GetOptions(): |