We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c11af9e commit 9bc7b1aCopy full SHA for 9bc7b1a
tests/test_examples.py
@@ -10,7 +10,7 @@ def classcase(name):
10
11
12
@unittest.skip(
13
- "Skipping TextExamples, because TextExamples was moved. More discussion needed."
+ "Skipping TextExamples, because examples folder was moved. More discussion needed."
14
)
15
class TestExamples(unittest.TestCase):
16
"""
tests/test_main.py
@@ -19,6 +19,9 @@ def setUp(self):
19
def tearDown(self):
20
sys.path[:] = self.old_sys_path
21
22
+ @unittest.skip(
23
+ "Skipping test_run, because examples folder was moved. More discussion needed."
24
+ )
25
def test_run(self):
26
with patch("mesa.visualization.ModularServer") as ModularServer:
27
example_dir = os.path.abspath(
0 commit comments