Skip to content

Commit bfaa4b3

Browse files
committed
Exclude models that now use import-a
1 parent 376b7c8 commit bfaa4b3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/test/scala/org/nlogo/models/TestModels.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ abstract class TestModels extends AnyFunSuite {
3333
// the following models use the import-a extension, which is not bundled
3434
private def excludeModel(path: String): Boolean = {
3535
path.contains("Calorimetry") ||
36-
path.contains("Resource Example")
36+
path.contains("Resource Example") ||
37+
path.contains("Bug Hunt Camouflage") ||
38+
path.contains("Mammoths") ||
39+
path.contains("Robotic Factory")
3740
}
3841

3942
def testModels(models: Map[Model, String], testName: String)(testFun: Model => Iterable[Any]): Unit =

0 commit comments

Comments
 (0)