Skip to content

Commit

Permalink
fix dependency list
Browse files Browse the repository at this point in the history
  • Loading branch information
wtbarnes authored and nabobalis committed Dec 29, 2023
1 parent 1f8acc7 commit 402ecc2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sunpy/util/tests/test_sysinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
def test_find_dependencies():
missing, installed = find_dependencies()
assert missing == {}
assert sorted(list(installed.keys())) == sorted(["astropy", "numpy", "packaging", "parfive", "requests"])
assert sorted(list(installed.keys())) == sorted(["astropy", "numpy", "packaging"])

missing, installed = find_dependencies(package="sunpy", extras=["required", "all"])
assert missing == {}
Expand Down Expand Up @@ -48,6 +48,8 @@ def test_missing_dependencies_by_extra():
'asdf',
'required',
'dask',
'data',
'database',
'dev',
'docs',
'docs-gallery',
Expand Down

0 comments on commit 402ecc2

Please sign in to comment.