( args )
| 59 | |
| 60 | |
| 61 | def BuildYcmdLibs( args ): |
| 62 | if not args.skip_build: |
| 63 | subprocess.check_call( [ |
| 64 | sys.executable, |
| 65 | p.join( DIR_OF_THIS_SCRIPT, 'third_party', 'ycmd', 'build.py' ), |
| 66 | '--quiet' |
| 67 | ] ) |
| 68 | |
| 69 | |
| 70 | def UnittestTests( parsed_args, extra_unittest_args ): |