aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2023-08-22 17:17:32 -0500
committerTinWoodman92 <chrhodgden@gmail.com>2023-08-22 17:17:32 -0500
commitdd36ae643a28bc2cc9efce5a373c566354505dae (patch)
tree299c972c7162f93236086ea4b615b481a383f461 /run_tests.py
parente60c8bd3f722dfb7d51d67413ddcd423f14a8c0c (diff)
focus testshandle_vectors
Diffstat (limited to 'run_tests.py')
-rw-r--r--run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 542c6d5..438edcf 100644
--- a/run_tests.py
+++ b/run_tests.py
@@ -3,7 +3,7 @@ import unittest
if __name__ == "__main__":
loader = unittest.TestLoader()
# suite = loader.discover("tests", pattern="test_*.py")
- suite = loader.loadTestsFromName("tests.test_save_environment.TestSaveEnvironment.test_save_environment")
+ suite = loader.loadTestsFromName("tests.test_import_variable.TestImportVariable.test_import_integer")
# suite = loader.loadTestsFromName("tests.test_assign_variable.TestAssignVariable.test_assign_integer")
runner = unittest.TextTestRunner()
result = runner.run(suite)