Skip to content

Commit

Permalink
Test commit - to be reverted
Browse files Browse the repository at this point in the history
Signed-off-by: Sandesh Kumar <[email protected]>
  • Loading branch information
sandeshkr419 committed Mar 20, 2024
1 parent b701d91 commit 08f426e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ public void testFiles() throws Exception {

try (DirectoryStream<Path> stream = Files.newDirectoryStream(tmp)) {
for (Path doc : stream) {
// Testing change with skipping - will remove in final code
if (doc.toString().endsWith(".pages") || doc.toString().endsWith(".key")) {
logger.debug("skipping: {}", doc);
continue;
}
logger.debug("parsing: {}", doc);
assertParseable(doc);
}
Expand Down

0 comments on commit 08f426e

Please sign in to comment.