Commit 125fca78 authored by Yakubov, Sergey's avatar Yakubov, Sergey
Browse files

implement filesys broker

parent 0250fefa
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
[report]
omit =
    tests/*
    remote_data_broker/local_data_broker/*
 No newline at end of file
    app/brokers/local/*
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ lint:
      poetry run isort --filter-files --check-only . ;
      poetry run black --check --diff .;
      poetry run flake8 .;
      poetry run pylint app tests remote_data_broker;
      poetry run pylint app tests;
      poetry run mypy .
      "
    - docker tag remote-data-broker $CONTAINER_RDM_URL/$CI_COMMIT_REF_NAME:$CI_COMMIT_SHORT_SHA
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ repos:
      - id: system
        name: Pylint
        description: use pylint to lint
        entry: poetry run pylint app tests remote_data_broker
        entry: poetry run pylint app tests
        pass_filenames: false
        language: system
  - repo: local
+7 −0
Original line number Diff line number Diff line
""" will have """
__version__ = "0.1.0"

from app.brokers.abstract import RemoteDataBroker
from app.brokers.filesys import FilesysBroker

__all__ = ["RemoteDataBroker", "FilesysBroker"]
Loading