Skip to content

Commit

Permalink
exclude todo folder from unit tests #435
Browse files Browse the repository at this point in the history
  • Loading branch information
walterxie committed Dec 12, 2023
1 parent 216531d commit 28a2601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lphy-base/src/test/java/lphy/base/LPhyExamplesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void testLPhyExamplesRun() {
File[] dirs = exampleDir.listFiles();
assertNotNull(dirs);
for (final File dir : dirs) {
if (dir.isDirectory())
if (dir.isDirectory() && !"todo".equalsIgnoreCase(dir.getName()))
testLPhyExamplesInDir(dir);
}
}
Expand Down

0 comments on commit 28a2601

Please sign in to comment.