fix: add frame parent folder

This commit is contained in:
Alex Duan 2023-12-11 15:28:35 +08:00
parent e2161bfeb5
commit bda1c215eb
13 changed files with 25 additions and 25 deletions

View File

@ -1,9 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import sys import sys
from log import * from frame.log import *
from cases import * from frame.cases import *
from sql import * from frame.sql import *
import threading import threading
import random import random
import string import string

View File

@ -18,7 +18,7 @@ import datetime
import inspect import inspect
import importlib import importlib
import traceback import traceback
from log import * from frame.log import *
class TDCase: class TDCase:

View File

@ -5,11 +5,11 @@ import time
import os import os
import socket import socket
from log import * from frame.log import *
from sql import * from frame.sql import *
from cases import * from frame.cases import *
from dnodes import * from frame.dnodes import *
from common import * from frame.common import *
class ClusterDnodes(TDDnodes): class ClusterDnodes(TDDnodes):
"""rewrite TDDnodes and make MyDdnodes as TDDnodes child class""" """rewrite TDDnodes and make MyDdnodes as TDDnodes child class"""

View File

@ -20,12 +20,12 @@ import json
import toml import toml
from boundary import DataBoundary from boundary import DataBoundary
import taos import taos
from log import * from frame.log import *
from sql import * from frame.sql import *
from cases import * from frame.cases import *
from dnodes import * from frame.dnodes import *
from common import * from frame.common import *
from constant import * from frame.constant import *
from dataclasses import dataclass,field from dataclasses import dataclass,field
from typing import List from typing import List
from datetime import datetime from datetime import datetime

View File

@ -15,7 +15,7 @@ import sys
import os import os
import os.path import os.path
import subprocess import subprocess
from log import * from frame.log import *
class TDSimClient: class TDSimClient:

View File

@ -15,7 +15,7 @@ import sys
import os import os
import os.path import os.path
import subprocess import subprocess
from log import * from frame.log import *
class TDSimClient: class TDSimClient:

View File

@ -15,7 +15,7 @@ import sys
import os import os
import os.path import os.path
import subprocess import subprocess
from log import * from frame.log import *
class TDSimClient: class TDSimClient:

View File

@ -22,7 +22,7 @@ import base64
import json import json
import copy import copy
from fabric2 import Connection from fabric2 import Connection
from log import * from frame.log import *
from shutil import which from shutil import which

View File

@ -13,7 +13,7 @@
import os import os
from log import * from frame.log import *

View File

@ -20,7 +20,7 @@ import traceback
import psutil import psutil
import shutil import shutil
import pandas as pd import pandas as pd
from log import * from frame.log import *
from constant import * from constant import *
# from datetime import timezone # from datetime import timezone

View File

@ -15,7 +15,7 @@ import sys
import os import os
import time import time
import datetime import datetime
from log import * from frame.log import *
class TDSub: class TDSub:
def __init__(self): def __init__(self):

View File

@ -1,7 +1,7 @@
import requests import requests
from fabric2 import Connection from fabric2 import Connection
from log import * from frame.log import *
from common import * from frame.common import *
class TAdapter: class TAdapter:

View File

@ -19,7 +19,7 @@ import inspect
import psutil import psutil
import shutil import shutil
import json import json
from log import * from frame.log import *
from multiprocessing import cpu_count from multiprocessing import cpu_count