Skip to content

Commit

Permalink
remove
Browse files Browse the repository at this point in the history
  • Loading branch information
xadupre committed Sep 7, 2024
1 parent 8ee5f39 commit b2bdfae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions _unittests/ut_xrun_doc/test_documentation_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
import importlib
import subprocess
import time
from mlstatpy import __file__ as teachpyx_file
from mlstatpy import __file__ as mlstatpy_file
from mlstatpy.ext_test_case import ExtTestCase

VERBOSE = 0
ROOT = os.path.realpath(os.path.abspath(os.path.join(teachpyx_file, "..", "..")))
ROOT = os.path.realpath(os.path.abspath(os.path.join(mlstatpy_file, "..", "..")))


def import_source(module_file_path, module_name):
Expand Down
4 changes: 2 additions & 2 deletions _unittests/ut_xrun_doc/test_documentation_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
import time
import warnings
from nbconvert import PythonExporter
from mlstatpy import __file__ as teachpyx_file
from mlstatpy import __file__ as mlstatpy_file
from mlstatpy.ext_test_case import ExtTestCase

VERBOSE = 0
ROOT = os.path.realpath(os.path.abspath(os.path.join(teachpyx_file, "..", "..")))
ROOT = os.path.realpath(os.path.abspath(os.path.join(mlstatpy_file, "..", "..")))


def import_source(module_file_path, module_name):
Expand Down
2 changes: 1 addition & 1 deletion _unittests/ut_xrun_doc/test_measure_time.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
from math import cos
from teachpyx.ext_test_case import ExtTestCase, measure_time
from mlstatpy.ext_test_case import ExtTestCase, measure_time


class TestMeasureTime(ExtTestCase):
Expand Down
6 changes: 3 additions & 3 deletions _unittests/ut_xrun_doc/test_normalize_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import pprint
from nbformat import reader, writes
from nbformat.validator import normalize
from teachpyx import __file__ as teachpyx_file
from teachpyx.ext_test_case import ExtTestCase
from mlstatpy import __file__ as mlstatpy_file
from mlstatpy.ext_test_case import ExtTestCase

VERBOSE = 0
ROOT = os.path.realpath(os.path.abspath(os.path.join(teachpyx_file, "..", "..")))
ROOT = os.path.realpath(os.path.abspath(os.path.join(mlstatpy_file, "..", "..")))


class TestDocumentationNotebook(ExtTestCase):
Expand Down

0 comments on commit b2bdfae

Please sign in to comment.