Skip to content

Commit

Permalink
Fix rebase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvothecoder committed Nov 28, 2023
1 parent 15bfbca commit 1efff7c
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions tests/integration/test_diags.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@ def _move_to_NERSC_webserver(machine_path_re_str, html_prefix_format_str, result
return new_results_dir


<<<<<<< HEAD
<<<<<<< HEAD
=======
>>>>>>> b367f61e (Update order of methods)
def _compare_images(
mismatched_images: List[str],
image_name: str,
Expand All @@ -103,21 +99,9 @@ def _compare_images(
os.mkdir(diff_dir)

bbox = diff.getbbox()
<<<<<<< HEAD
<<<<<<< HEAD
# If `diff.getbbox()` is None, then the images are in theory equal
if bbox is None:
pass
=======
if not bbox:
# If `diff.getbbox()` is None, then the images are in theory equal
assert diff.getbbox() is not None
>>>>>>> b367f61e (Update order of methods)
=======
# If `diff.getbbox()` is None, then the images are in theory equal
if bbox is None:
pass
>>>>>>> 0e66bc84 (Fix conditional for bbox)
else:
# Sometimes, a few pixels will differ, but the two images appear identical.
# https://codereview.stackexchange.com/questions/55902/fastest-way-to-count-non-zero-pixels-using-python-and-pillow
Expand Down Expand Up @@ -163,21 +147,11 @@ def _compare_images(
return mismatched_images


<<<<<<< HEAD
class TestAllSets:
@pytest.fixture(autouse=True)
def setup(self, get_results_dir):
self.results_dir = get_results_dir

=======
=======
>>>>>>> b367f61e (Update order of methods)
class TestAllSets:
@pytest.fixture(autouse=True)
def setup(self, get_results_dir):
self.results_dir = get_results_dir

>>>>>>> 0f77d921 (Update fixture in `test_diags.py` to only run once)
def test_results_directory_ends_with_specific_directory(self):
assert self.results_dir.endswith("all_sets_results_test/")

Expand Down

0 comments on commit 1efff7c

Please sign in to comment.