diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 16:17:59 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 16:17:59 +0100 |
| commit | b164430fb1fa82c705077d46cdb685de5faf6a19 (patch) | |
| tree | 41200335abb2ba0c4771602ff5be341e12db167b /minishell_test/suite | |
| parent | 904a033ae738e1c351f8fef71e2ec2418fc4db3d (diff) | |
| download | minishell_test-b164430fb1fa82c705077d46cdb685de5faf6a19.tar.gz minishell_test-b164430fb1fa82c705077d46cdb685de5faf6a19.tar.bz2 minishell_test-b164430fb1fa82c705077d46cdb685de5faf6a19.zip | |
Changing import statement to support package
Diffstat (limited to 'minishell_test/suite')
| -rw-r--r-- | minishell_test/suite/__init__.py | 4 | ||||
| -rw-r--r-- | minishell_test/suite/decorator.py | 6 | ||||
| -rw-r--r-- | minishell_test/suite/suite.py | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/minishell_test/suite/__init__.py b/minishell_test/suite/__init__.py index 6f7f321..e7677b6 100644 --- a/minishell_test/suite/__init__.py +++ b/minishell_test/suite/__init__.py @@ -1,2 +1,2 @@ -from suite.suite import Suite # noqa: F401 -from suite.decorator import suite # noqa: F401 +from minishell_test.suite.suite import Suite # noqa: F401 +# from minishell_test.suite.decorator import suite # noqa: F401 diff --git a/minishell_test/suite/decorator.py b/minishell_test/suite/decorator.py index fdc7fb6..a843bc4 100644 --- a/minishell_test/suite/decorator.py +++ b/minishell_test/suite/decorator.py @@ -6,15 +6,15 @@ # By: charles <me@cacharle.xyz> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/09/11 12:28:00 by charles #+# #+# # -# Updated: 2021/02/04 16:18:11 by charles ### ########.fr # +# Updated: 2021/02/05 14:50:41 by charles ### ########.fr # # # # ############################################################################ # import inspect from typing import List -from suite import Suite -from test import Test +from minishell_test.suite import Suite +from minishell_test.test import Test def suite(groups: List[str] = [], bonus: bool = False): # type: ignore diff --git a/minishell_test/suite/suite.py b/minishell_test/suite/suite.py index 836cac0..df342a0 100644 --- a/minishell_test/suite/suite.py +++ b/minishell_test/suite/suite.py @@ -6,15 +6,15 @@ # By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:29 by charles #+# #+# # -# Updated: 2021/02/04 16:13:08 by charles ### ########.fr # +# Updated: 2021/02/05 14:24:36 by charles ### ########.fr # # # # ############################################################################ # import sys from typing import List, Tuple, Optional, Callable -import config -from test import Test +import minishell_test.config as config +from minishell_test.test import Test class Suite: |
