Skip to content

Commit 2efb604

Browse files
committed
test failed integration tests
1 parent c7f227f commit 2efb604

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

airbyte-integrations/connectors/source-s3/integration_tests/integration_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,4 @@ def test_big_file(self, minio_credentials: Dict[str, Any]) -> None:
134134
source = SourceS3()
135135
catalog = source.read_catalog(HERE / "configured_catalog.json")
136136
assert self.read_source(minio_credentials, catalog) == expected_count
137+
assert False

airbyte-integrations/connectors/source-s3/unit_tests/test_source.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@
33
#
44

55
import json
6-
from pathlib import Path
76

87
from source_s3 import SourceS3
98

109

11-
def test_transform_backslash_t_to_tab(tmp_path: Path) -> None:
10+
def test_transform_backslash_t_to_tab(tmp_path):
1211
config_file = tmp_path / "config.json"
1312
with open(config_file, "w") as fp:
1413
json.dump({"format": {"delimiter": "\\t"}}, fp)
1514
source = SourceS3()
16-
config = source.read_config(str(config_file))
15+
config = source.read_config(config_file)
1716
assert config["format"]["delimiter"] == "\t"
18-
assert False

0 commit comments

Comments
 (0)