Skip to content

Commit b8a532e

Browse files
authored
Merge pull request #661 from nautobot/fix_ci
Disable test_as_form() Due to Bug in Core
2 parents 5d110b9 + 929eb0e commit b8a532e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

changes/659.housekeeping

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Temporarily disable test_as_form() test that's breaking CI until bug in core is fixed.

nautobot_ssot/tests/test_jobs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""Test the Job classes in nautobot_ssot."""
22

33
import os.path
4+
from unittest import skip
45
from unittest.mock import Mock, call, patch
56

67
from django.db.utils import IntegrityError, OperationalError
@@ -58,6 +59,8 @@ def test_sync_log(self):
5859

5960
self.assertEqual(2, SyncLogEntry.objects.count())
6061

62+
# TODO: Re-enable this test once the bug in core is fixed.
63+
@skip
6164
def test_as_form(self):
6265
"""Test the as_form() method."""
6366
form = self.job.as_form()

0 commit comments

Comments
 (0)