Skip to content

Commit

Permalink
test_notebooks: fix broken cell filter
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuel-schmid committed Sep 20, 2023
1 parent b0cca35 commit e792768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/jenkins/test_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_notebook(self):
and not ln.startswith('ask_ok(')
and not ln.startswith('pool') # by convention Pool objects are called pool
and not ln.strip().endswith('?')
and re.search(r'(\W|^)Pool\(', ln) # prevent Pool object creation
and not re.search(r'(\W|^)Pool\(', ln) # prevent Pool object creation
])

# execute the python code
Expand Down

0 comments on commit e792768

Please sign in to comment.