From 0a4468a0edb5a9bbb29451fdafbad47551561d68 Mon Sep 17 00:00:00 2001 From: Eleni Mathioulaki <emathioulaki@athenarc.gr> Date: Sat, 4 Mar 2023 13:01:18 +0100 Subject: [PATCH] Use simpler SDA test --- packages/sda/package.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/packages/sda/package.py b/packages/sda/package.py index 8ff8aa20..3ae37578 100644 --- a/packages/sda/package.py +++ b/packages/sda/package.py @@ -53,11 +53,7 @@ class Sda(MakefilePackage): @run_after('install') def test_install(self): - # prepare grid - with working_dir(self.prefix.examples + '/lysozymes/prepare_grids_and_ecm'): - run_script = Executable('bash') - run_script('./run_ed_hd_ecm.sh') # run random test - with working_dir(self.prefix.examples + '/lysozymes/unit_test'): - test = Executable(self.prefix.bin.test_force_energy2) - test('128_lysph6_2interactions.in') + with working_dir(self.prefix.examples + '/bnbs/bnbs_assoc_hits'): + sda_flex = Executable(self.prefix.bin + '/sda_flex') + sda_flex('sda_association_0.in') -- GitLab