Details
Description
While working on another ticket, I saw test_compression_cql_options failing (which is not the case in Jenkins) but the Circle CI multiplexer showed it as being flaky:
sstables = self.get_sstables(table='compression_opts_table', indexes=list()) sstable_paths = self.get_table_paths('compression_opts_table') found = False for sstable_path in sstable_paths: sstable = os.path.join(sstable_path, sstables['compression_opts_table'][1]) if os.path.exists(sstable): assert 'DEFLATE' == self._get_compression_type(sstable) found = True > assert found E assert False compression_test.py:118: AssertionError
Attachments
Issue Links
- is related to
-
CASSANDRA-18001 Add missing tests suites to CircleCI
- Resolved