Skip to content

Commit

Permalink
Added call to unittest.main() if run from __main__
Browse files Browse the repository at this point in the history
  • Loading branch information
nmassey001 committed Apr 22, 2021
1 parent dab2c72 commit 959c314
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,7 @@ def test_auto_split_and_agg_round_trip2(self):

self._split_and_aggregate("0.4", "0.5")

self.assertTrue(nca_equivalence(self.ncafile1, self.ncafile2))
self.assertTrue(nca_equivalence(self.ncafile1, self.ncafile2))

if __name__ == '__main__':
unittest.main()

0 comments on commit 959c314

Please sign in to comment.