Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable test_as_form() Due to Bug in Core #661

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/659.housekeeping
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Temporarily disable test_as_form() test that's breaking CI until bug in core is fixed.
3 changes: 3 additions & 0 deletions nautobot_ssot/tests/test_jobs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Test the Job classes in nautobot_ssot."""

import os.path
from unittest import skip
from unittest.mock import Mock, call, patch

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

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

# TODO: Re-enable this test once the bug in core is fixed.
@skip
def test_as_form(self):
"""Test the as_form() method."""
form = self.job.as_form()
Expand Down