We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c55c3ab commit a53d414Copy full SHA for a53d414
test/test_target.py
@@ -1,3 +1,4 @@
1
+import importlib
2
import io
3
import os
4
import shutil
@@ -8,13 +9,17 @@
8
9
import boto3
10
import numpy as np
11
import pandas as pd
12
+import pytest
13
from matplotlib import pyplot
14
from moto import mock_aws
15
16
from gokart.file_processor import _ChunkedLargeFileReader
17
from gokart.target import make_model_target, make_target
18
from test.util import _get_temporary_directory
19
20
+polars_installed = importlib.util.find_spec('polars') is not None
21
+pytestmark = pytest.mark.skipif(polars_installed, reason='polars installed, skip pandas tests')
22
+
23
24
class LocalTargetTest(unittest.TestCase):
25
def setUp(self):
0 commit comments