Skip to content

Commit

Permalink
Temporarily disable test. (#8434)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterallenwebb authored Aug 16, 2023
1 parent ac539fd commit 17cd145
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/functional/artifacts/test_run_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from pathlib import Path
import json
import pytest
import platform
from dbt.tests.util import run_dbt

good_model_sql = """
Expand Down Expand Up @@ -41,7 +40,9 @@ def test_timing_exists(self, project):
assert len(results.results[0].timing) > 0


@pytest.mark.skipif(platform.system() != "Darwin", reason="Fails on linux in github actions")
# This test is failing due to the faulty assumptions that run_results.json would
# be written multiple times. Temporarily disabling.
@pytest.mark.skip()
class TestRunResultsWritesFileOnSignal:
@pytest.fixture(scope="class")
def models(self):
Expand Down

0 comments on commit 17cd145

Please sign in to comment.