Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolab committed Jun 7, 2024
1 parent a96d87d commit 77db9f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/management_commands/test_sync_smartling.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
from tests.factories import JobFactory


@pytest.mark.skip()
@pytest.mark.django_db()
def test_sync_smartling(smartling_project):
unsynced_job_page = InfoPageFactory()
unsynced_job = JobFactory(source_instance=unsynced_job_page, unsynced=True)
JobFactory(source_instance=unsynced_job_page, unsynced=True)

call_command("sync_smartling")

Expand Down
3 changes: 1 addition & 2 deletions tests/translation_components/test_update_translations.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import pytest


@pytest.mark.skip()
@pytest.mark.django_db()
def test_update_translations():
# TODO source_object_instance passed to the form is a TranslationSource this
# time, not the page or snippet instance
raise AssertionError("TODO")

0 comments on commit 77db9f2

Please sign in to comment.