Skip to content

Commit

Permalink
add more compression algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
maltesander committed Nov 3, 2023
1 parent 2e539ba commit 079f48f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tests/templates/kuttl/smoke/test-hbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def delete_scanner(self, scanner_location):

hbase = HbaseClient()

compression_opts = ['none', 'snappy']
# Valid compression types are snappy, lzo, gz, bzip2, lz4 or zstd
compression_opts = ['none', 'snappy', 'lzo', 'gz', 'bzip2', 'lz4', 'zstd']

for compression in compression_opts:
print(f'''
Expand Down Expand Up @@ -127,7 +128,7 @@ def delete_scanner(self, scanner_location):
==================''')
hbase.delete_scanner(scanner_location)

print('''
Delete the table
================''')
hbase.delete_table(table_schema_location)
#print('''

Check failure on line 131 in tests/templates/kuttl/smoke/test-hbase.py

View workflow job for this annotation

GitHub Actions / flake8

[flake8] tests/templates/kuttl/smoke/test-hbase.py#L131 <265>

block comment should start with '# '
Raw output
./tests/templates/kuttl/smoke/test-hbase.py:131:5: E265 block comment should start with '# '
#Delete the table

Check failure on line 132 in tests/templates/kuttl/smoke/test-hbase.py

View workflow job for this annotation

GitHub Actions / flake8

[flake8] tests/templates/kuttl/smoke/test-hbase.py#L132 <265>

block comment should start with '# '
Raw output
./tests/templates/kuttl/smoke/test-hbase.py:132:5: E265 block comment should start with '# '
#================''')

Check failure on line 133 in tests/templates/kuttl/smoke/test-hbase.py

View workflow job for this annotation

GitHub Actions / flake8

[flake8] tests/templates/kuttl/smoke/test-hbase.py#L133 <265>

block comment should start with '# '
Raw output
./tests/templates/kuttl/smoke/test-hbase.py:133:5: E265 block comment should start with '# '
#hbase.delete_table(table_schema_location)

Check failure on line 134 in tests/templates/kuttl/smoke/test-hbase.py

View workflow job for this annotation

GitHub Actions / flake8

[flake8] tests/templates/kuttl/smoke/test-hbase.py#L134 <265>

block comment should start with '# '
Raw output
./tests/templates/kuttl/smoke/test-hbase.py:134:5: E265 block comment should start with '# '

0 comments on commit 079f48f

Please sign in to comment.