From aeb1663d7bb787ba7c835b999322ce6c6da2f4c4 Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Sun, 10 May 2020 19:19:37 -0700 Subject: [PATCH] Add code to clean up files after test. --- Tests/pkacalc_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tests/pkacalc_test.py b/Tests/pkacalc_test.py index 9f006d4..05d107b 100644 --- a/Tests/pkacalc_test.py +++ b/Tests/pkacalc_test.py @@ -66,6 +66,9 @@ class SystemTest(unittest.TestCase): errors.append("%12s %8.2f %8.2f" % (identity, expected_value, value)) + os.remove("%s.pka" % pdb) + os.remove("%s.propka_input" % pdb) + ref.close() output.close()