Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-hey committed Feb 28, 2025
1 parent 465d22a commit ac252c0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_tasks/test_all_abstasks.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from __future__ import annotations

import logging
from unittest.mock import Mock, patch
import os
from unittest.mock import Mock, patch

import pytest
import requests

Expand Down Expand Up @@ -65,7 +66,10 @@ def test_load_data(
if not task.is_multilingual:
mock_dataset_transform.assert_called_once()

@pytest.mark.skipif(condition=os.getenv("NO_SKIP", 0) == 1, reason="Just in separate CI Job")

@pytest.mark.skipif(
condition=os.getenv("NO_SKIP", 0) == 1, reason="Just in separate CI Job"
)
@pytest.mark.flaky(
reruns=3,
reruns_delay=5,
Expand Down

0 comments on commit ac252c0

Please sign in to comment.