sched: Move Sched Assertions to a separate directory
Also change namespace from sheye to bart.sched
Signed-off-by: Kapileshwar Singh <kapileshwar.singh@arm.com>
diff --git a/bart/SchedAssert.py b/bart/sched/SchedAssert.py
similarity index 99%
rename from bart/SchedAssert.py
rename to bart/sched/SchedAssert.py
index 324fb84..a00002e 100755
--- a/bart/SchedAssert.py
+++ b/bart/sched/SchedAssert.py
@@ -22,7 +22,7 @@
from trappy.plotter.Utils import listify
from trappy.stats.Aggregator import MultiTriggerAggregator
from trappy.stats import SchedConf as sconf
-from sheye import Utils
+from bart import Utils
import numpy as np
# pylint: disable=invalid-name
diff --git a/bart/SchedMatrix.py b/bart/sched/SchedMatrix.py
similarity index 99%
rename from bart/SchedMatrix.py
rename to bart/sched/SchedMatrix.py
index a6684e0..f41af14 100755
--- a/bart/SchedMatrix.py
+++ b/bart/sched/SchedMatrix.py
@@ -71,7 +71,7 @@
from trappy.stats.Correlator import Correlator
from trappy.plotter.Utils import listify
from trappy.stats import SchedConf as sconf
-from sheye import Utils
+from bart import Utils
POSITIVE_TOLERANCE = 0.80
diff --git a/bart/SchedMultiAssert.py b/bart/sched/SchedMultiAssert.py
similarity index 98%
rename from bart/SchedMultiAssert.py
rename to bart/sched/SchedMultiAssert.py
index 4d884b1..8e2f334 100755
--- a/bart/SchedMultiAssert.py
+++ b/bart/sched/SchedMultiAssert.py
@@ -21,8 +21,8 @@
import trappy
from trappy.stats import SchedConf as sconf
from trappy.plotter.Utils import listify
-from sheye.SchedAssert import SchedAssert
-from sheye import Utils
+from bart.sched.SchedAssert import SchedAssert
+from bart import Utils
class SchedMultiAssert(object):
diff --git a/bart/__init__.py b/bart/sched/__init__.py
similarity index 79%
rename from bart/__init__.py
rename to bart/sched/__init__.py
index fe4c006..c391ecb 100644
--- a/bart/__init__.py
+++ b/bart/sched/__init__.py
@@ -13,8 +13,9 @@
# limitations under the License.
#
-"""Initialization for sheye"""
+"""Initialization for bart.sched"""
-from sheye import SchedAssert
-from sheye import SchedMultiAssert
-from sheye import SchedMatrix
+
+from bart.sched import SchedAssert
+from bart.sched import SchedMultiAssert
+from bart.sched import SchedMatrix