Add comments about other tests which should be fixed.

This commit is contained in:
Vitaly Baranov 2022-01-13 00:56:16 +07:00
parent 291600b565
commit 77774cd1bd

View File

@ -21,12 +21,12 @@ def regression(self, local, clickhouse_binary_path, stress=None):
Feature(test=load("example.regression", "regression"), parallel=True, executor=pool)(**args)
Feature(test=load("ldap.regression", "regression"), parallel=True, executor=pool)(**args)
Feature(test=load("rbac.regression", "regression"), parallel=True, executor=pool)(**args)
Feature(test=load("aes_encryption.regression", "regression"), parallel=True, executor=pool)(**args)
# Feature(test=load("map_type.regression", "regression"), parallel=True, executor=pool)(**args)
Feature(test=load("window_functions.regression", "regression"), parallel=True, executor=pool)(**args)
Feature(test=load("aes_encryption.regression", "regression"), parallel=True, executor=pool)(**args) # TODO: fix it!
# Feature(test=load("map_type.regression", "regression"), parallel=True, executor=pool)(**args) # TODO: fix it!
Feature(test=load("window_functions.regression", "regression"), parallel=True, executor=pool)(**args) # TODO: fix it!
Feature(test=load("datetime64_extended_range.regression", "regression"), parallel=True, executor=pool)(**args)
Feature(test=load("kerberos.regression", "regression"), parallel=True, executor=pool)(**args)
Feature(test=load("extended_precision_data_types.regression", "regression"), parallel=True, executor=pool)(**args)
Feature(test=load("extended_precision_data_types.regression", "regression"), parallel=True, executor=pool)(**args) # TODO: fix it!
finally:
join()