| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 from __future__ import print_function | 3 from __future__ import print_function |
| 4 | 4 |
| 5 import argparse | 5 import argparse |
| 6 import os | 6 import os |
| 7 import subprocess | 7 import subprocess |
| 8 import sys | 8 import sys |
| 9 | 9 |
| 10 from tools import cov | 10 from tools import cov |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 cwd=home_dir) | 148 cwd=home_dir) |
| 149 | 149 |
| 150 # Now run all the tests under Python2 and Python3. | 150 # Now run all the tests under Python2 and Python3. |
| 151 call(['python', path_to_runner]) | 151 call(['python', path_to_runner]) |
| 152 if has_python34: | 152 if has_python34: |
| 153 call(['python3', path_to_runner]) | 153 call(['python3', path_to_runner]) |
| 154 | 154 |
| 155 | 155 |
| 156 if __name__ == '__main__': | 156 if __name__ == '__main__': |
| 157 sys.exit(main(sys.argv[1:])) | 157 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |