From e43001c9e66a45b56c0d4f66537e068a7e7d60b6 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 14 Jul 2015 11:39:11 -0400 Subject: [PATCH] Add TODO entry for moving away from subprocess in ostestr This commit adds a new entry to the os-testr TODO file to indicate the long term goal for migrating away from using subprocess in ostestr. Everything ostestr uses is a python project so we shouldn't need to call out for everything, it was just faster to bootstrap the project this way, but we should probably move away from doing this. Change-Id: I3b2e54d72514ad92079a893fd7a835e6d446d4bc --- TODO.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TODO.rst b/TODO.rst index 135bcd6..ed52e84 100644 --- a/TODO.rst +++ b/TODO.rst @@ -15,3 +15,5 @@ Long Term * Add subunit-trace functional tests ** Sample subunit streams and test output from subunit-trace * Add testing for subunit2html + * Stop using subprocess in ostestr, everything it uses is python so there + isn't a need to shell out for everything.