Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
espenhgn committed Apr 19, 2024
1 parent 6d78288 commit 64d6288
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_ldpred2_standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def test_ldpred2_R_packages():
out = subprocess.run(call.split(' '), check=True)
assert out.returncode == 0


def test_ldpred2_python3_packages():
packages = [
'notebook',
Expand All @@ -75,12 +76,13 @@ def test_ldpred2_python3_packages():
'pandas',
'scipy',
'seaborn',
]
]
for pkg in packages:
call = f'{PREFIX} python3 -c "import {pkg}"'
out = subprocess.run(call, shell=True, check=True)
assert out.returncode == 0


def test_ldpred2_bin_prsice():
call = f'{PREFIX} PRSice --version'
out = subprocess.run(call.split(' '), check=True)
Expand Down

0 comments on commit 64d6288

Please sign in to comment.