Skip to content
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
4 changes: 3 additions & 1 deletion tests/integration/domains/test_domains_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
# @pytest.mark.skip(reason="BUG 943")
def test_fail_to_create_master_domain_with_invalid_tags():
timestamp = str(time.time_ns())
bad_tag = "*"
bad_tag = (
"a" * 300
) # Tag validation rules changed — '*' is no longer rejected

exec_failing_test_command(
BASE_CMD
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/lke/test_lke_enterprise.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_create_lke_enterprise(monkeypatch: MonkeyPatch):
"--tier",
"enterprise",
"--k8s_version",
"v1.31.1+lke1",
"v1.31.1+lke4",
"--node_pools.type",
"g6-standard-6",
"--node_pools.count",
Expand All @@ -74,7 +74,7 @@ def test_create_lke_enterprise(monkeypatch: MonkeyPatch):
assert_headers_in_lines(headers, output.splitlines())

assert label in output
assert "v1.31.1+lke1" in output
assert "v1.31.1+lke4" in output
assert "enterprise" in output

delete_target_id(
Expand Down
1 change: 1 addition & 0 deletions tests/integration/tags/test_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def test_view_unique_tag(test_tag_instance):
assert test_tag_instance in result


@pytest.mark.skip(reason="BUG = TPT-3650")
def test_fail_to_create_tag_shorter_than_three_char():
bad_tag = "aa"
result = exec_failing_test_command(
Expand Down