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 2a543b2 commit d236820Copy full SHA for d236820
tests/unit/test_examples.py
@@ -43,3 +43,11 @@ def test_example_4():
43
example4_main = join(example4_dir, "main.py")
44
# Run it and make sure it doesn't raise an exception or otherwise exit with a non-zero code.
45
subprocess.run(example4_main, cwd=example4_dir, check=True)
46
+
47
48
+def test_example_5():
49
+ """Test that the "example5" script runs successfully."""
50
+ example5_dir = join(EXAMPLES, "05-nautobot-peeringdb")
51
+ example5_main = join(example5_dir, "main.py")
52
+ # Run it and make sure it doesn't raise an exception or otherwise exit with a non-zero code.
53
+ subprocess.run(example5_main, cwd=example5_dir, check=True)
0 commit comments