Make it easier to run without memory leak tests
authorDavid Kerkeslager <kerkeslager@gmail.com>
Wed, 17 Jul 2019 22:09:46 +0000 (18:09 -0400)
committerDavid Kerkeslager <kerkeslager@gmail.com>
Wed, 17 Jul 2019 22:09:46 +0000 (18:09 -0400)
README.md
integration_tests.py

index 2b7ff47..d00a607 100644 (file)
--- a/README.md
+++ b/README.md
@@ -11,7 +11,8 @@ furry animals, so Fur is named in their honor.
 
 ## 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
 
index a4d7c67..5faf695 100644 (file)
@@ -61,7 +61,7 @@ def add_example_output_test(filename):
 
     setattr(OutputTests, 'test_' + filename, test)
 
-class MemoryLeakTest(unittest.TestCase):
+class MemoryLeakTests(unittest.TestCase):
     pass
 
 def add_example_memory_leak_test(filename):