| 65 | |
| 66 | |
| 67 | class TestCommand(Command): |
| 68 | user_options = [] |
| 69 | |
| 70 | def initialize_options(self): |
| 71 | pass |
| 72 | |
| 73 | def finalize_options(self): |
| 74 | pass |
| 75 | |
| 76 | def run(self): |
| 77 | import sys |
| 78 | import subprocess |
| 79 | raise SystemExit( |
| 80 | subprocess.call([sys.executable, |
| 81 | # Turn on deprecation warnings |
| 82 | '-Wd', |
| 83 | 'simplejson/tests/__init__.py'])) |
| 84 | |
| 85 | |
| 86 | def run_setup(with_binary): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…