Skip to content

Moving the compatibility test for export / import s3 to an inner directory #21500

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions ydb/tests/compatibility/s3_backups/ya.make
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
PY3TEST()
INCLUDE(${ARCADIA_ROOT}/ydb/tests/ydbd_dep.inc)

FORK_TEST_FILES()
FORK_TESTS()
FORK_SUBTESTS()
SPLIT_FACTOR(10)

TEST_SRCS(
test_export_import_s3.py
)

SIZE(LARGE)
REQUIREMENTS(cpu:16)
INCLUDE(${ARCADIA_ROOT}/ydb/tests/large.inc)
INCLUDE(${ARCADIA_ROOT}/ydb/tests/tools/s3_recipe/recipe.inc)


DEPENDS(
ydb/tests/library/compatibility/binaries
)

PEERDIR(
contrib/python/boto3
ydb/tests/library
ydb/tests/library/compatibility
)

END()
7 changes: 4 additions & 3 deletions ydb/tests/compatibility/ya.make
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ SPLIT_FACTOR(10)

TEST_SRCS(
test_example.py
test_export_import_s3.py
test_followers.py
test_compatibility.py
test_stress.py
Expand All @@ -28,7 +27,6 @@ TEST_SRCS(
SIZE(LARGE)
REQUIREMENTS(cpu:16)
INCLUDE(${ARCADIA_ROOT}/ydb/tests/large.inc)
INCLUDE(${ARCADIA_ROOT}/ydb/tests/tools/s3_recipe/recipe.inc)


DEPENDS(
Expand All @@ -37,11 +35,14 @@ DEPENDS(
)

PEERDIR(
contrib/python/boto3
ydb/tests/library
ydb/tests/datashard/lib
ydb/tests/stress/simple_queue/workload
ydb/tests/library/compatibility
)

END()

RECURSE(
s3_backups
)