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():
30
30
"pandas" ,
31
31
"keras" ,
32
32
"tensorflow" ,
33
+ "joblib" ,
33
34
]
34
35
35
36
def get_version (module ):
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ def test_get_deps_info():
16
16
assert "scipy" in _deps_info
17
17
assert "Cython" in _deps_info
18
18
assert "pandas" in _deps_info
19
+ assert "joblib" in _deps_info
19
20
20
21
21
22
def test_show_versions_default (capsys ):
@@ -34,6 +35,7 @@ def test_show_versions_default(capsys):
34
35
assert "pandas" in out
35
36
assert "keras" in out
36
37
assert "tensorflow" in out
38
+ assert "joblib" in out
37
39
38
40
39
41
def test_show_versions_github (capsys ):
@@ -55,4 +57,5 @@ def test_show_versions_github(capsys):
55
57
assert "* pandas" in out
56
58
assert "* keras" in out
57
59
assert "* tensorflow" in out
60
+ assert "* joblib" in out
58
61
assert "</details>" in out
You can’t perform that action at this time.
0 commit comments