|
@@ -3,7 +3,7 @@ import os
|
|
from flask import current_app
|
|
from flask import current_app
|
|
from babel.support import Translations, NullTranslations
|
|
from babel.support import Translations, NullTranslations
|
|
from flaskbb.utils.translations import FlaskBBDomain
|
|
from flaskbb.utils.translations import FlaskBBDomain
|
|
-from flaskbb.extensions import plugin_manager
|
|
|
|
|
|
+import pytest
|
|
|
|
|
|
|
|
|
|
def _remove_compiled_translations():
|
|
def _remove_compiled_translations():
|
|
@@ -29,6 +29,7 @@ def _compile_translations():
|
|
subprocess.call(["pybabel", "compile", "-d", translations_folder])
|
|
subprocess.call(["pybabel", "compile", "-d", translations_folder])
|
|
|
|
|
|
|
|
|
|
|
|
+@pytest.mark.skip(reason="Plugin transition")
|
|
def test_flaskbbdomain_translations(default_settings):
|
|
def test_flaskbbdomain_translations(default_settings):
|
|
domain = FlaskBBDomain(current_app)
|
|
domain = FlaskBBDomain(current_app)
|
|
|
|
|