python - how to configure eclipse(pydev) to run with external executable -
i have test framework tests have kicked off using particular executable(say m). tests written in python(i have eclipse configured pydev) . run tests run thru cmdline like: $ m -test <test_file_name>.<testcase_name>
how configure eclipse run configuration can run /debug eclipse? not able able find documentation tells me if can use "program arguments" in run/debug configuration set up?
pydev run python executable configure in interpreter preferences (so, if want run different executable, it'll work if it's program configured in interpreter preferences , can launch python script -- regular interpreter).
if that's not case, can configure external tool make run (run > external tools > external tools configurations > program) , use run.
now, if executable work python executable (or if you're running python itself) see:
getting started on how run program: http://pydev.org/manual_101_run.html
how run unittest: http://pydev.org/manual_adv_pyunit.html
Comments
Post a Comment