mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-29 00:39:55 +08:00
e622dfb5cc
Conflicts: .coveragerc .gitignore .travis.yml docs/api_Utils.rst docs/conf.py docs/index.rst requirements.txt setup.py
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()
|