mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-29 03:54:39 +08:00
11 lines
248 B
Python
11 lines
248 B
Python
import unittest, os
|
|
import simpegEM as EM
|
|
|
|
class EM_ExamplesRunning(unittest.TestCase):
|
|
|
|
def test_CylInversion(self):
|
|
execfile(os.path.join(EM.__path__[0], 'Examples', 'CylInversion.py'))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|