renamed python pkg sunbeam -> opm.

setup.py: test_suite -> tests_suite .

libsunbeam -> libopmcommon_python.

sunbeam -> opm: test_connection ok.

test_deck ok.

test_group_tree ok.

test_grupnet ok.

test_parse_deck.py ok.

test_parse.py ok.

python all tests ok.
This commit is contained in:
Steinar Foss
2019-08-12 08:36:00 +02:00
parent c40eed027b
commit e25416c236
24 changed files with 86 additions and 86 deletions

View File

@@ -1,5 +1,5 @@
import unittest
import sunbeam
import opm
class TestProps(unittest.TestCase):
@@ -9,7 +9,7 @@ class TestProps(unittest.TestCase):
self.assertTrue(diff <= epsilon, msg=err_msg)
def setUp(self):
self.spe3 = sunbeam.parse('tests/spe3/SPE3CASE1.DATA').state
self.spe3 = opm.parse('tests/spe3/SPE3CASE1.DATA').state
self.props = self.spe3.props()
def test_repr(self):