autodl-projects/tests/test_import.py

22 lines
730 B
Python
Raw Normal View History

2021-05-19 07:00:33 +02:00
#####################################################
# Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2021.03 #
#####################################################
# pytest ./tests/test_import.py #
#####################################################
def test_import():
from xautodl import config_utils
from xautodl import datasets
from xautodl import log_utils
from xautodl import models
from xautodl import nas_infer_model
from xautodl import procedures
from xautodl import spaces
from xautodl import trade_models
from xautodl import utils
2021-06-10 15:53:22 +02:00
2021-05-19 07:00:33 +02:00
from xautodl import xlayers
2021-06-10 15:53:22 +02:00
from xautodl import xmisc
from xautodl import xmmodels
2021-05-19 07:00:33 +02:00
print("Check all imports done")