mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-27 21:08:35 +08:00
11 lines
227 B
Python
11 lines
227 B
Python
import unittest, os
|
|
from SimPEG.EM import Examples
|
|
|
|
class EM_ExamplesRunning(unittest.TestCase):
|
|
|
|
def test_CylInversion(self):
|
|
Examples.CylInversion.run(plotIt=False)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|