Skip to content

Commit

Permalink
increase notebook size limit from 1 to 2 MB
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo authored Aug 19, 2023
1 parent 2358cfc commit 80c5623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def test_run_notebooks(notebook_filename, tmp_path):


def test_file_size(notebook_filename):
"""checks if all example Jupyter notebooks have file size less than a certain limit"""
assert os.stat(notebook_filename).st_size * SI.byte < 1 * SI.megabyte
"""checks if all example Jupyter notebooks have file size less than an arbitrary limit"""
assert os.stat(notebook_filename).st_size * SI.byte < 2 * SI.megabyte


def test_no_errors_or_warnings_in_output(notebook_filename):
Expand Down

0 comments on commit 80c5623

Please sign in to comment.