Skip to content

Commit

Permalink
Removed unneeded test suite creation for GIS measure tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
claudep committed Jul 23, 2022
1 parent 4d4bf55 commit 0afb65e
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions tests/gis_tests/test_measure.py
Expand Up @@ -293,18 +293,3 @@ def test_hash(self):
self.assertEqual(hash(a2), hash(a3))
self.assertNotEqual(hash(a1), hash(a2))
self.assertNotEqual(hash(a1), hash(a3))


def suite():
s = unittest.TestSuite()
s.addTest(unittest.makeSuite(DistanceTest))
s.addTest(unittest.makeSuite(AreaTest))
return s


def run(verbosity=2):
unittest.TextTestRunner(verbosity=verbosity).run(suite())


if __name__ == "__main__":
run()

0 comments on commit 0afb65e

Please sign in to comment.