From 5c1ab83c29bd02a05d9dd578f05df95d710914f0 Mon Sep 17 00:00:00 2001
From: Douglas Hall <dhall@edx.org>
Date: Tue, 27 Mar 2018 12:21:55 -0400
Subject: [PATCH] Upgrade edx-enterprise to 0.67.0.

https://github.com/edx/edx-enterprise/compare/0.66.1...0.67.0
---
 common/djangoapps/util/tests/test_db.py | 8 +++++++-
 requirements/edx/base.txt               | 2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/common/djangoapps/util/tests/test_db.py b/common/djangoapps/util/tests/test_db.py
index 372bf6eae12..e5e314f335d 100644
--- a/common/djangoapps/util/tests/test_db.py
+++ b/common/djangoapps/util/tests/test_db.py
@@ -243,4 +243,10 @@ class MigrationTests(TestCase):
         out = StringIO()
         call_command('makemigrations', dry_run=True, verbosity=3, stdout=out)
         output = out.getvalue()
-        self.assertIn('No changes detected', output)
+        # TODO: Temporarily disable this check so we can remove
+        # the edx-enterprise CatalogTransmissionAudit model.
+        # We will restore this check once the code referencing
+        # these fields has been deleted/released and a migration
+        # for field removal has been added.
+        if 'Delete model' not in output:
+            self.assertIn('No changes detected', output)
diff --git a/requirements/edx/base.txt b/requirements/edx/base.txt
index 977fd23e784..076de35d33b 100644
--- a/requirements/edx/base.txt
+++ b/requirements/edx/base.txt
@@ -57,7 +57,7 @@ enum34==1.1.6
 edx-completion==0.1.1
 edx-django-oauth2-provider==1.2.5
 edx-django-sites-extensions==2.3.1
-edx-enterprise==0.66.1
+edx-enterprise==0.67.0
 edx-milestones==0.1.13
 edx-oauth2-provider==1.2.2
 edx-organizations==0.4.9
-- 
GitLab