We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89750d6 commit 982aa3cCopy full SHA for 982aa3c
tests/test_descriptions.py
@@ -46,6 +46,8 @@ def test_all_descriptions(self):
46
)
47
48
def test_invalid_description_commit(self):
49
- os.environ["ROBOT_DESCRIPTION_COMMIT"] = "foobar"
+ invalid_commit = "foobar"
50
+ os.environ["ROBOT_DESCRIPTION_COMMIT"] = invalid_commit
51
+ self.assertEqual(os.getenv("ROBOT_DESCRIPTION_COMMIT"), invalid_commit)
52
with self.assertRaises(git.exc.GitCommandError):
53
import_module("robot_descriptions.sigmaban_description")
0 commit comments