Skip to content

Commit

Permalink
0.6.15
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer committed Oct 15, 2023
1 parent be4e5c4 commit 914966b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions tests/storage_tests/google/test_reader_gcs_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ def test_blockers():


if __name__ == "__main__": # pragma: no cover
test_blockers()
from tests.helpers.runner import run_tests

print("okay")
run_tests()
7 changes: 4 additions & 3 deletions tests/storage_tests/google/test_rw_gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def test_gcs_binary():
project="testing",
blob_size=1024,
dataset=f"{BUCKET_NAME}/test/gcs/dataset/binary",
schema=["index"],
)
for i in range(200):
w.append({"index": i + 300})
Expand Down Expand Up @@ -69,6 +70,7 @@ def test_gcs_text():
blob_size=1024,
format="jsonl",
dataset=f"{BUCKET_NAME}/test/gcs/dataset/text",
schema=["index"],
)
for i in range(250):
w.append({"index": i + 300})
Expand All @@ -87,7 +89,6 @@ def test_gcs_text():


if __name__ == "__main__": # pragma: no cover
test_gcs_binary()
test_gcs_text()
from tests.helpers.runner import run_tests

print("okay")
run_tests()
5 changes: 3 additions & 2 deletions tests/storage_tests/google/test_rw_gcs_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def test_gcs_parquet():
inner_writer=GoogleCloudStorageWriter,
format="parquet",
dataset=f"{BUCKET_NAME}/test/gcs/dataset",
schema=["$$"],
)
for i in range(100):
w.append({"$$": i * 300})
Expand All @@ -54,6 +55,6 @@ def test_gcs_parquet():


if __name__ == "__main__": # pragma: no cover
test_gcs_parquet()
from tests.helpers.runner import run_tests

print("okay")
run_tests()
4 changes: 2 additions & 2 deletions tests/storage_tests/minio_s3/test_reading_public_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ def test_reading_aws_using_minio():


if __name__ == "__main__": # pragma: no cover
test_reading_aws_using_minio()
from tests.helpers.runner import run_tests

print("okay")
run_tests()
5 changes: 3 additions & 2 deletions tests/storage_tests/minio_s3/test_rw_minio.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def test_using_batch_writer():
secret_key=os.getenv("MINIO_SECRET_KEY"),
secure=False,
dataset=f"{BUCKET_NAME}/test_writer",
schema=["player", "from"],
)

for member in VAMPIRIC_COUNCIL:
Expand All @@ -61,6 +62,6 @@ def test_using_batch_writer():


if __name__ == "__main__": # pragma: no cover
test_using_batch_writer()
from tests.helpers.runner import run_tests

print("okay")
run_tests()

0 comments on commit 914966b

Please sign in to comment.