From 5499320723ad10933da398848c123accf36e4d38 Mon Sep 17 00:00:00 2001 From: topsworld Date: Mon, 13 Jan 2025 09:37:05 +0800 Subject: [PATCH] fix: import error --- test/conftest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/conftest.py b/test/conftest.py index e07d1c5..63464cd 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -1,8 +1,10 @@ # -*- coding: utf-8 -*- """Pytest fixtures.""" +import random import shutil import pytest from os import path, makedirs +from uuid import uuid4 TEST_ROOT_PATH: str = path.dirname(path.abspath(__file__)) TEST_FILES_PATH: str = path.join(TEST_ROOT_PATH, 'miot')