diff --git a/tests/test_profile.py b/tests/test_profile.py new file mode 100644 index 0000000..f2a6a65 --- /dev/null +++ b/tests/test_profile.py @@ -0,0 +1,14 @@ +import pytest +import subprocess + + +def test_create_screen(): + cmd = "bean profile tests/data/var_mini_screen.h5ad " + try: + subprocess.check_output( + cmd, + shell=True, + universal_newlines=True, + ) + except subprocess.CalledProcessError as exc: + raise exc