## Integration tests
-To run the unit tests, run `python integration_tests.py`.
+To run the unit tests, run `python integration_tests.py`. You can test just the output of the examples or just the memory usage of the tests by running
+`python integration_tests.py OutputTests` or `python integration_tests.py MemoryLeakTests` respectively.
# Running
setattr(OutputTests, 'test_' + filename, test)
-class MemoryLeakTest(unittest.TestCase):
+class MemoryLeakTests(unittest.TestCase):
pass
def add_example_memory_leak_test(filename):