Skip to content
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

Disable more unstable tests #2476

Merged
merged 6 commits into from
Oct 1, 2021
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
2 changes: 1 addition & 1 deletion src/v/archival/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ rp_test(
DEFINITIONS BOOST_TEST_DYN_LINK
LIBRARIES v::seastar_testing_main v::application Boost::unit_test_framework v::archival v::storage_test_utils
ARGS "-- -c 1"
LABELS archival
LABELS archival disable_on_ci # Disabled for https://github.com/vectorizedio/redpanda/issues/2438
)


Expand Down
23 changes: 12 additions & 11 deletions src/v/cluster/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ set(srcs
cluster_tests.cc
metadata_dissemination_test.cc
notification_latch_test.cc
autocreate_test.cc
# Disabled for https://github.com/vectorizedio/redpanda/issues/2175
# autocreate_test.cc
controller_state_test.cc
commands_serialization_test.cc
topic_table_test.cc
Expand All @@ -36,7 +37,8 @@ set(srcs
controller_api_tests.cc
decommissioning_tests.cc
replicas_rebalancing_tests.cc
create_partitions_test.cc
# Disabled for https://github.com/vectorizedio/redpanda/issues/2175
# create_partitions_test.cc
id_allocator_stm_test.cc
data_policy_controller_test.cc)

Expand All @@ -55,15 +57,14 @@ set_source_files_properties(
allocation_bench.cc
PROPERTIES SKIP_UNITY_BUILD_INCLUSION 1)

# Disabled until https://github.com/vectorizedio/redpanda/issues/2385 is resolved
#rp_test(
# UNIT_TEST
# BINARY_NAME partition_moving_test
# SOURCES partition_moving_test.cc
# LIBRARIES v::seastar_testing_main v::application v::storage_test_utils
# DEFINITIONS SEASTAR_TESTING_MAIN
# LABELS cluster
#)
rp_test(
UNIT_TEST
BINARY_NAME partition_moving_test
SOURCES partition_moving_test.cc
LIBRARIES v::seastar_testing_main v::application v::storage_test_utils
DEFINITIONS SEASTAR_TESTING_MAIN
LABELS cluster disable_on_ci # Disabled for https://github.com/vectorizedio/redpanda/issues/2385
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice trick!

)

rp_test(
UNIT_TEST
Expand Down
3 changes: 1 addition & 2 deletions tests/rptest/tests/data_policy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ def test_incremental_config(self):
topic, {TopicSpec.PROPERTY_DATA_POLICY_FUNCTION_NAME: "3"})
except subprocess.CalledProcessError as e:
# Expected: request fails to update topic
self.logger.error(
f"Kafka CLI alter failed as expected: {e.stdout}")
self.logger.info(f"Kafka CLI alter failed as expected: {e.stdout}")
assert "unable to parse property" in e.stdout
else:
raise RuntimeError(f"Expected API error, got {r}")
Expand Down
2 changes: 2 additions & 0 deletions tests/rptest/tests/node_operations_fuzzy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import time

from ducktape.mark.resource import cluster
from ducktape.mark import ignore
from ducktape.utils.util import wait_until
from rptest.clients.kafka_cat import KafkaCat
from rptest.clients.kafka_cli_tools import KafkaCliTools
Expand Down Expand Up @@ -107,6 +108,7 @@ def _create_random_topics(self, count):
nodes
"""

@ignore # https://github.com/vectorizedio/redpanda/issues/2246
@cluster(num_nodes=7)
def test_node_opeartions(self):
# allocate 5 nodes for the cluster
Expand Down
2 changes: 2 additions & 0 deletions tests/rptest/tests/pandaproxy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import uuid
import requests
from ducktape.mark.resource import cluster
from ducktape.mark import ignore
from ducktape.utils.util import wait_until

from rptest.clients.types import TopicSpec
Expand Down Expand Up @@ -746,6 +747,7 @@ def test_consumer_group_binary_v2(self):
rc_res = c0.remove()
assert rc_res.status_code == requests.codes.no_content

@ignore # https://github.com/vectorizedio/redpanda/issues/2501
@cluster(num_nodes=3)
def test_consumer_group_json_v2(self):
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/rptest/tests/tx_verifier_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_tx(self):
rpk.create_topic("topic1")
rpk.create_topic("topic2")

self.redpanda.logger.error("starting tx verifier")
self.redpanda.logger.info("starting tx verifier")
try:
cmd = ("{java} -jar {verifier_jar} {brokers}").format(
java="java",
Expand Down