Merge pull request #21080 from edx/INCR-419

INCR-419 python3 compatibility
This commit is contained in:
Ayub
2019-07-25 14:50:06 +05:00
committed by GitHub
2 changed files with 7 additions and 2 deletions

View File

@@ -1,11 +1,14 @@
"""Code run by pylint before running any tests."""
# Patch the xml libs before anything else.
from safe_lxml import defuse_xml_libs
defuse_xml_libs()
from __future__ import absolute_import
import pytest
from safe_lxml import defuse_xml_libs
defuse_xml_libs()
@pytest.fixture(autouse=True)
def no_webpack_loader(monkeypatch):

View File

@@ -1,3 +1,5 @@
from __future__ import absolute_import
from setuptools import find_packages, setup
XMODULES = [