Skip to content

Commit

Permalink
add profile test
Browse files Browse the repository at this point in the history
  • Loading branch information
jykr committed Apr 9, 2024
1 parent 8fc4895 commit e317755
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/test_profile.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e317755

Please sign in to comment.