Skip to content

Commit

Permalink
tests: skip repository loader test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Dec 15, 2024
1 parent 4391f8f commit 00fd378
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/resources/test_loaders.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

import os
from typing import TYPE_CHECKING, Any

import git
Expand Down Expand Up @@ -180,6 +181,10 @@ async def test_cli_loader(processor_registry: ProcessorRegistry) -> None:


@pytest.mark.asyncio
@pytest.mark.skipif(
os.environ.get("CI") == "true",
reason="Git branch tests are unreliable in CI environment",
)
async def test_repository_loader(
tmp_path: Path,
processor_registry: ProcessorRegistry,
Expand Down

0 comments on commit 00fd378

Please sign in to comment.