From e0f678a45e27fe2c2a2d41547ff0d7af7fdabe2a Mon Sep 17 00:00:00 2001 From: lguohan Date: Sat, 3 Apr 2021 22:56:04 -0700 Subject: [PATCH] [setup.py]: move the module to test requirement (#1542) bug introduced in #1393 Signed-off-by: Guohan Lu --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5451d63fb6c8..02a8d53e381a 100644 --- a/setup.py +++ b/setup.py @@ -169,8 +169,7 @@ 'sonic-yang-mgmt', 'swsssdk>=2.0.1', 'tabulate==0.8.2', - 'xmltodict==0.12.0', - 'deepdiff==5.2.3', + 'xmltodict==0.12.0' ], setup_requires= [ 'pytest-runner', @@ -179,7 +178,8 @@ tests_require = [ 'pytest', 'mockredispy>=2.9.3', - 'sonic-config-engine' + 'sonic-config-engine', + 'deepdiff==5.2.3' ], classifiers=[ 'Development Status :: 3 - Alpha',