1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: use Debian path of hmmbuild in testUPP
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2021-09-26
--- a/test/unittest/testUPP.py
+++ b/test/unittest/testUPP.py
@@ -49,8 +49,7 @@
suff_bit = ""
for prog in ['hmmalign', 'hmmbuild', 'hmmsearch']:
setattr(self.x.options, prog, Namespace(
- path=get_data_path("../../../tools/bundled/%s/%s%s" % (
- platform.system(), prog, suff_bit))))
+ path=get_data_path("/usr/bin/%s" % prog)))
def tearDown(self):
self.x.options.alignment_file.close()
|