Description: Skip tests for features not yet implemented in Python 3
Author: Stuart Prescott <stuart@debian.org>

--- a/translate/convert/test_po2ini.py
+++ b/translate/convert/test_po2ini.py
@@ -3,6 +3,10 @@
 from __future__ import unicode_literals
 
 from pytest import importorskip
+import pytest
+import sys
+pytestmark = pytest.mark.skipif(sys.version_info > (3,0),
+                                reason="Not implemented for Python 3 yet")
 
 from translate.convert import po2ini, test_convert
 from translate.misc import wStringIO
