Skip to content

Commit 1c98c98

Browse files
skip amd example properly in tests
1 parent 6d84398 commit 1c98c98

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

tests/notebooks/test__community_and_functions.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ def _should_test_notebook(notebook_path: str) -> bool:
1616
if notebook_path.endswith("/logical_qubits_by_alice_and_bob.ipynb"):
1717
pytest.skip("Skipping 'logical_qubits_by_alice_and_bob'")
1818
return False
19-
if notebook_path.endswith("/resiliency_planning_AMD.ipynb"):
20-
pytest.skip("Skipping 'resiliency_planning_AMD'")
21-
return False
2219

2320
return "/functions/" in notebook_path or "/community/" in notebook_path
2421

tests/test_all_notebooks_are_tested.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ def _should_skip_notebook(notebook_name: str) -> bool:
2222
"/functions/" in notebook_path
2323
or "/community/" in notebook_path
2424
or "/.ipynb_checkpoints/" in notebook_path
25+
or "/resiliency_planning_AMD" in notebook_path
2526
)

0 commit comments

Comments
 (0)