Skip to content

Commit

Permalink
Fixed Iterate tags
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Aug 1, 2024
1 parent 17ae7de commit 91692f3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* Standard tests for writing single column CSV for different column types.
*/
@TestMethodOrder(OrderAnnotation.class)
@Tag("Iterate")
class CsvColTypeTest {
final FileTestRunner runner = new FileTestRunner(this);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* the "read" tests.
*/
@TestMethodOrder(OrderAnnotation.class)
@Tag("Iterate")
class CsvMultiColTest {
final String[] usedColumns = {"str10K", "long10K", "int10K", "short10K"};
final FileTestRunner runner = new FileTestRunner(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* Standard tests for writing single column parquet for different column types.
*/
@TestMethodOrder(OrderAnnotation.class)
@Tag("Iterate")
class ParquetColTypeTest {
final FileTestRunner runner = new FileTestRunner(this);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* generated by the "write" tests is used by the "read" tests.
*/
@TestMethodOrder(OrderAnnotation.class)
@Tag("Iterate")
class ParquetMultiColTest {
final String[] usedColumns = {"str10K", "long10K", "int10K", "short10K", "bigDec10K", "intArr5", "intVec5"};
final FileTestRunner runner = new FileTestRunner(this);
Expand All @@ -19,7 +20,6 @@ void setup() {

@Test
@Order(1)
@Tag("Iterate")
void writeMultiColSnappy() {
runner.runParquetWriteTest("ParquetWrite- Snappy Multi Col -Static", "SNAPPY", usedColumns);
}
Expand All @@ -32,7 +32,6 @@ void readMultiColSnappy() {

@Test
@Order(3)
@Tag("Iterate")
void writeMultiColZstd() {
runner.runParquetWriteTest("ParquetWrite- Zstd Multi Col -Static", "ZSTD", usedColumns);
}
Expand All @@ -45,7 +44,6 @@ void readMultiColZstd() {

@Test
@Order(5)
@Tag("Iterate")
void writeMultiColLzo() {
runner.runParquetWriteTest("ParquetWrite- Lzo Multi Col -Static", "LZO", usedColumns);
}
Expand Down

0 comments on commit 91692f3

Please sign in to comment.