diff --git a/force_bdss/cli/tests/test_execution.py b/force_bdss/cli/tests/test_execution.py
index 80f3c878f91a050fa71b4ec04b81bf8e82486d2a..79c38021720f98729c767159490221021fec2adf 100644
--- a/force_bdss/cli/tests/test_execution.py
+++ b/force_bdss/cli/tests/test_execution.py
@@ -28,6 +28,12 @@ class TestExecution(unittest.TestCase):
             out = subprocess.check_call(["force_bdss", "test_csv.json"])
             self.assertEqual(out, 0)
 
+    def test_plain_invocation_evaluate(self):
+        with cd(fixtures.dirpath()):
+            out = subprocess.check_call([
+                "force_bdss", "--evaluate", "test_csv.json"])
+            self.assertEqual(out, 0)
+
     def test_unsupported_file_input(self):
         with cd(fixtures.dirpath()):
             with self.assertRaises(subprocess.CalledProcessError):