Skip to content

Commit 775b0a8

Browse files
!!!
1 parent bc3963a commit 775b0a8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

tests/utils_for_testbook.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,9 @@ def _compare_qmods(qmods: dict[str, str], new_qmods: dict[str, str]) -> None:
8989
f"Found uncommitted Qmod files: {', '.join(uncommitted_files)}"
9090
)
9191
for file in qmods:
92-
assert _normalize_qmod_code(qmods[file]) == _normalize_qmod_code(
93-
new_qmods[file]
92+
assert (
93+
_normalize_qmod_code(qmods[file]) == _normalize_qmod_code(new_qmods[file])
94+
and False
9495
), f"Qmod file {file.split('/')[-1]} is not up-to-date"
9596

9697

tests/utils_for_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ def should_run_notebook(notebook_name: str) -> bool:
7272

7373

7474
def should_skip_notebook(notebook_name: str) -> bool:
75-
return not should_run_notebook(notebook_name)
75+
return "link_monitoring" not in notebook_name
76+
# return not should_run_notebook(notebook_name)
7677

7778

7879
@lru_cache

0 commit comments

Comments
 (0)