fixed test rel path includes

This commit is contained in:
Richard Feistenauer 2019-03-03 09:32:35 +01:00
parent 20aaa98c23
commit cae72d92cb
5 changed files with 12 additions and 12 deletions

View File

@ -15,7 +15,7 @@ limitations under the License.
"""
import sys
sys.path.append('../..')
sys.path.append('../cellular_automaton')
from cellular_automaton import *
import unittest

View File

@ -15,10 +15,10 @@ limitations under the License.
"""
import sys
sys.path.append('../..')
sys.path.append('../cellular_automaton')
from cellular_automaton.cellular_automaton.cell import Cell
from cellular_automaton.cellular_automaton.cell_state import CellState
from cellular_automaton.cell import Cell
from cellular_automaton.cell_state import CellState
import unittest

View File

@ -15,9 +15,9 @@ limitations under the License.
"""
import sys
sys.path.append('../..')
sys.path.append('../cellular_automaton')
from cellular_automaton.cellular_automaton import cell_state as cell_state
from cellular_automaton import cell_state
import unittest

View File

@ -15,11 +15,11 @@ limitations under the License.
"""
import sys
sys.path.append('../..')
sys.path.append('../cellular_automaton')
from cellular_automaton.cellular_automaton import *
from cellular_automaton.cellular_automaton.cell_state import CellState
from cellular_automaton.cellular_automaton.state import CellularAutomatonState
from cellular_automaton import *
from cellular_automaton.cell_state import CellState
from cellular_automaton.state import CellularAutomatonState
import unittest
import mock

View File

@ -15,9 +15,9 @@ limitations under the License.
"""
import sys
sys.path.append('../..')
sys.path.append('../cellular_automaton')
from cellular_automaton import cellular_automaton as csn
import cellular_automaton as csn
import unittest