Skip to content

Commit

Permalink
Add azurite exclusions to s3-tests
Browse files Browse the repository at this point in the history
References #700.
  • Loading branch information
gaul committed Dec 4, 2024
1 parent a7ed76e commit 5a9e46c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/test/resources/run-s3-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ do
sleep 1
done

# execute s3-tests
pushd s3-tests
tox -- -m 'not fails_on_s3proxy'\
tags='not fails_on_s3proxy'\
' and not appendobject'\
' and not bucket_policy'\
' and not checksum'\
Expand All @@ -56,3 +54,11 @@ tox -- -m 'not fails_on_s3proxy'\
' and not user_policy'\
' and not versioning'\
' and not webidentity_test'

if [ "${S3PROXY_CONF}" = "s3proxy-azurite.conf" ]; then
tags="${tags} and not multipart"
fi

# execute s3-tests
pushd s3-tests
tox -- -m "${tags}"

0 comments on commit 5a9e46c

Please sign in to comment.