Skip to content

Commit

Permalink
Fixed? test
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cowart committed Dec 15, 2023
1 parent 60cb71a commit cd6008a
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions metapool/scripts/tests/test_seqpro.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def setUp(self):
def tearDown(self):
rmtree(self.vf_test_dir, ignore_errors=True)

def atest_atropos_run(self):
def test_atropos_run(self):
# TODO: Fix this test
runner = CliRunner()

Expand All @@ -54,16 +54,10 @@ def atest_atropos_run(self):
self.assertEqual(sorted(os.listdir('./')), exp_preps)

for prep, exp_lines in zip(exp_preps, [4, 4, 5]):

with open(prep) as f:
foo = f.readlines()
for line in foo:
print(line)
print("###")
# self.assertEqual(len(f.read().split('\n')),
# exp_lines, 'Assertion error in %s' % prep)

self.assertTrue(False)
self.assertEqual(len(f.read().split('\n')),
exp_lines,
'Assertion error in %s' % prep)

def test_fastp_run(self):
runner = CliRunner()
Expand Down

0 comments on commit cd6008a

Please sign in to comment.