There's not yet a python3 version of this package, and I don't want it to be the only thing keeping us from having a passing test suite. --- tests/dd_tests/dd_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/dd_tests/dd_test.py b/tests/dd_tests/dd_test.py index 60ff6b4..4705559 100644 --- a/tests/dd_tests/dd_test.py +++ b/tests/dd_tests/dd_test.py @@ -12,7 +12,8 @@ import subprocess
from contextlib import contextmanager from collections import namedtuple -from rpmfluff import SourceFile, SimpleRpmBuild, expectedArch +# TODO: this pragma is temporary until there's a python3-rpmfluff +from rpmfluff import SourceFile, SimpleRpmBuild, expectedArch # pylint: disable=import-error
TOP_SRCDIR = os.environ.get("top_srcdir", "../..") UTILDIR = os.path.join(TOP_SRCDIR, "utils/dd")
On Wed, 2015-07-08 at 15:05 -0400, Chris Lumens wrote:
There's not yet a python3 version of this package, and I don't want it to be the only thing keeping us from having a passing test suite.
tests/dd_tests/dd_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/dd_tests/dd_test.py b/tests/dd_tests/dd_test.py index 60ff6b4..4705559 100644 --- a/tests/dd_tests/dd_test.py +++ b/tests/dd_tests/dd_test.py @@ -12,7 +12,8 @@ import subprocess
from contextlib import contextmanager from collections import namedtuple -from rpmfluff import SourceFile, SimpleRpmBuild, expectedArch +# TODO: this pragma is temporary until there's a python3-rpmfluff +from rpmfluff import SourceFile, SimpleRpmBuild, expectedArch # pylint: disable=import-error
TOP_SRCDIR = os.environ.get("top_srcdir", "../..") UTILDIR = os.path.join(TOP_SRCDIR, "utils/dd")
Ack. Only thing leave note somewhere to change this when the package will be available ;).
On 07/09/2015 03:49 AM, Jiří Konečný wrote:
On Wed, 2015-07-08 at 15:05 -0400, Chris Lumens wrote:
There's not yet a python3 version of this package, and I don't want it to be the only thing keeping us from having a passing test suite.
tests/dd_tests/dd_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/dd_tests/dd_test.py b/tests/dd_tests/dd_test.py index 60ff6b4..4705559 100644 --- a/tests/dd_tests/dd_test.py +++ b/tests/dd_tests/dd_test.py @@ -12,7 +12,8 @@ import subprocess
from contextlib import contextmanager from collections import namedtuple -from rpmfluff import SourceFile, SimpleRpmBuild, expectedArch +# TODO: this pragma is temporary until there's a python3-rpmfluff +from rpmfluff import SourceFile, SimpleRpmBuild, expectedArch # pylint: disable=import-error
TOP_SRCDIR = os.environ.get("top_srcdir", "../..") UTILDIR = os.path.join(TOP_SRCDIR, "utils/dd")
Ack. Only thing leave note somewhere to change this when the package will be available ;). _______________________________________________ anaconda-patches mailing list anaconda-patches@lists.fedorahosted.org https://lists.fedorahosted.org/mailman/listinfo/anaconda-patches
Should be avaialble now
anaconda-patches@lists.fedorahosted.org