Skip to content

Commit

Permalink
Skip monorepo tests until that plugin has a stable build
Browse files Browse the repository at this point in the history
  • Loading branch information
timvink committed Jul 14, 2020
1 parent aafc38b commit c4951da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_builds.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ def test_simple_no_h1_start(tmp_path):
reason="Don't test windows, as monorepo doesnt run their unit test on windows either",
)
class TestMonorepoPlugin:
@pytest.mark.skip(reason="monorepo v0.4.9 is broken in production")
def test_compatibility_monorepo_plugin1(self, tmp_path):
tmp_proj = setup_clean_mkdocs_folder(
"tests/fixtures/projects/monorepo_ok/mkdocs.yml", tmp_path
Expand All @@ -181,6 +182,7 @@ def test_compatibility_monorepo_plugin1(self, tmp_path):
contents = page.read_text(encoding="utf-8")
assert re.search(r"2.</span> Hello world!", contents)

@pytest.mark.skip(reason="monorepo v0.4.9 is broken in production")
def test_compatibility_monorepo_plugin2(self, tmp_path):
tmp_proj = setup_clean_mkdocs_folder(
"tests/fixtures/projects/monorepo_ok/mkdocs_enum_first.yml", tmp_path
Expand All @@ -192,6 +194,7 @@ def test_compatibility_monorepo_plugin2(self, tmp_path):
contents = page.read_text(encoding="utf-8")
assert re.search(r"2.</span> Hello world!", contents)

@pytest.mark.skip(reason="monorepo v0.4.9 is broken in production")
def test_compatibility_monorepo_plugin3(self, tmp_path):
tmp_proj = setup_clean_mkdocs_folder(
"tests/fixtures/projects/monorepo_sample_docs/mkdocs.yml", tmp_path
Expand All @@ -203,6 +206,7 @@ def test_compatibility_monorepo_plugin3(self, tmp_path):
contents = page.read_text(encoding="utf-8")
assert re.search(r"7.</span> Changelog", contents)

@pytest.mark.skip(reason="monorepo v0.4.9 is broken in production")
def test_compatibility_monorepo_plugin4(self, tmp_path):
tmp_proj = setup_clean_mkdocs_folder(
"tests/fixtures/projects/monorepo_sample_docs/mkdocs_enum_first.yml",
Expand Down

0 comments on commit c4951da

Please sign in to comment.