Skip to content

Commit

Permalink
Skip failing test on mac: illegal instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindjahren authored and larsevj committed Apr 15, 2024
1 parent 7f3e2fa commit c2e7792
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/unit_tests/all/plugins/test_export_misfit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import sys

import pandas as pd
import pytest

Expand All @@ -8,6 +10,10 @@
from ert.shared.plugins import ErtPluginManager


@pytest.mark.skipif(
sys.platform.startswith("darwin"),
reason="https://github.com/equinor/ert/issues/7533",
)
def test_export_misfit(snake_oil_case_storage, snake_oil_default_storage, snapshot):
ExportMisfitDataJob(
snake_oil_case_storage, storage=None, ensemble=snake_oil_default_storage
Expand Down

0 comments on commit c2e7792

Please sign in to comment.