Skip to content

Commit 9bc7b1a

Browse files
jackiekazilrht
authored andcommitted
Skip tests impacted by examples folder move.
1 parent c11af9e commit 9bc7b1a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

tests/test_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def classcase(name):
1010

1111

1212
@unittest.skip(
13-
"Skipping TextExamples, because TextExamples was moved. More discussion needed."
13+
"Skipping TextExamples, because examples folder was moved. More discussion needed."
1414
)
1515
class TestExamples(unittest.TestCase):
1616
"""

tests/test_main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ def setUp(self):
1919
def tearDown(self):
2020
sys.path[:] = self.old_sys_path
2121

22+
@unittest.skip(
23+
"Skipping test_run, because examples folder was moved. More discussion needed."
24+
)
2225
def test_run(self):
2326
with patch("mesa.visualization.ModularServer") as ModularServer:
2427
example_dir = os.path.abspath(

0 commit comments

Comments
 (0)