rm dummy tests

This commit is contained in:
vdimir 2022-03-14 15:42:23 +00:00
parent 16dbdc30de
commit 494d5264dd
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862
4 changed files with 0 additions and 21 deletions

View File

@ -1,18 +0,0 @@
import pytest
from helpers.cluster import ClickHouseCluster
cluster = ClickHouseCluster(__file__)
node = cluster.add_instance('node')
@pytest.fixture(scope="module")
def start_cluster():
try:
cluster.start()
yield cluster
finally:
cluster.shutdown()
def test_drop_memory_database(start_cluster):
assert node.query("SELECT 1").strip() == "1"

View File

@ -1,2 +0,0 @@
-- Tags: no-fasttest
SELECT value not like '22%' FROM system.build_options WHERE name = 'GIT_BRANCH';