File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ def _get_deps_info():
3030 "pandas" ,
3131 "keras" ,
3232 "tensorflow" ,
33+ "joblib" ,
3334 ]
3435
3536 def get_version (module ):
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ def test_get_deps_info():
1616 assert "scipy" in _deps_info
1717 assert "Cython" in _deps_info
1818 assert "pandas" in _deps_info
19+ assert "joblib" in _deps_info
1920
2021
2122def test_show_versions_default (capsys ):
@@ -34,6 +35,7 @@ def test_show_versions_default(capsys):
3435 assert "pandas" in out
3536 assert "keras" in out
3637 assert "tensorflow" in out
38+ assert "joblib" in out
3739
3840
3941def test_show_versions_github (capsys ):
@@ -55,4 +57,5 @@ def test_show_versions_github(capsys):
5557 assert "* pandas" in out
5658 assert "* keras" in out
5759 assert "* tensorflow" in out
60+ assert "* joblib" in out
5861 assert "</details>" in out
You can’t perform that action at this time.
0 commit comments