Skip to content

Commit

Permalink
tests: fix pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop authored Sep 23, 2023
1 parent c638790 commit 86ccdd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dvc_oss/tests/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


@pytest.fixture(scope="session")
def docker_compose_file(pytestconfig):
def docker_compose_file():
return os.path.join(os.path.dirname(__file__), "docker-compose.yml")


Expand Down Expand Up @@ -71,16 +71,16 @@ def _make_oss():


@pytest.fixture
def make_oss(make_real_oss):
def make_oss(make_real_oss): # pylint: disable-next=redefined-outer-name
return make_real_oss


@pytest.fixture
def oss(real_oss):
def oss(real_oss): # pylint: disable-next=redefined-outer-name
# FIXME: this should use emulator
return real_oss


@pytest.fixture
def real_oss(make_real_oss):
def real_oss(make_real_oss): # pylint: disable-next=redefined-outer-name
return make_real_oss()

0 comments on commit 86ccdd3

Please sign in to comment.