diff options
| author | Konstantin Lebedev <9497591+kmlebedev@users.noreply.github.com> | 2024-04-14 22:41:32 +0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-14 10:41:32 -0700 |
| commit | 33537ae29f09af88f55d2f28a28406d3b8bfacd3 (patch) | |
| tree | 5c0ba5fb6ab26c3b4f8e6a1d153c6c7704186a54 /.github | |
| parent | 8833745fbcb140bfb61710d600c713e1ce50bd6c (diff) | |
| download | seaweedfs-33537ae29f09af88f55d2f28a28406d3b8bfacd3.tar.xz seaweedfs-33537ae29f09af88f55d2f28a28406d3b8bfacd3.zip | |
[s3] fix s3 test_multipart_get_part (#5476)
* try fix s3 test_multipart_get_part
* add passed s3 tests
* fix SeaweedFSUploadId
* rm spaces
* convert part request to range
* add passed s3 tests of multipart
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/s3tests.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/s3tests.yml b/.github/workflows/s3tests.yml index fe6ce4a80..d72fa3a3a 100644 --- a/.github/workflows/s3tests.yml +++ b/.github/workflows/s3tests.yml @@ -43,7 +43,7 @@ jobs: cd /__w/seaweedfs/seaweedfs/weed go install -buildvcs=false set -x - nohup weed -v 0 server -filer -s3 -ip.bind 0.0.0.0 \ + nohup weed -v 0 server -filer -filer.maxMB=64 -s3 -ip.bind 0.0.0.0 \ -master.raftHashicorp -master.electionTimeout 1s -master.volumeSizeLimitMB=1024 \ -volume.max=100 -volume.preStopSeconds=1 -s3.port=8000 -metricsPort=9324 \ -s3.allowEmptyFolder=false -s3.allowDeleteBucketNotEmpty=true -s3.config=../docker/compose/s3.json & @@ -164,12 +164,19 @@ jobs: s3tests_boto3/functional/test_s3.py::test_object_copy_key_not_found \ s3tests_boto3/functional/test_s3.py::test_multipart_copy_small \ s3tests_boto3/functional/test_s3.py::test_multipart_copy_without_range \ - s3tests_boto3/functional/test_s3.py::test_multipart_upload_multiple_sizes \ + s3tests_boto3/functional/test_s3.py::test_multipart_copy_special_names \ s3tests_boto3/functional/test_s3.py::test_multipart_copy_multiple_sizes \ + s3tests_boto3/functional/test_s3.py::test_multipart_get_part \ s3tests_boto3/functional/test_s3.py::test_multipart_upload \ + s3tests_boto3/functional/test_s3.py::test_multipart_upload_empty \ + s3tests_boto3/functional/test_s3.py::test_multipart_upload_multiple_sizes \ s3tests_boto3/functional/test_s3.py::test_multipart_upload_contents \ s3tests_boto3/functional/test_s3.py::test_multipart_upload_overwrite_existing_object \ s3tests_boto3/functional/test_s3.py::test_multipart_upload_size_too_small \ + s3tests_boto3/functional/test_s3.py::test_multipart_resend_first_finishes_last \ + s3tests_boto3/functional/test_s3.py::test_multipart_upload_resend_part \ + s3tests_boto3/functional/test_s3.py::test_multipart_upload_missing_part \ + s3tests_boto3/functional/test_s3.py::test_multipart_upload_incorrect_etag \ s3tests_boto3/functional/test_s3.py::test_abort_multipart_upload \ s3tests_boto3/functional/test_s3.py::test_list_multipart_upload \ s3tests_boto3/functional/test_s3.py::test_atomic_read_1mb \ |
