Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HaikuPorter: Move Reporters into dedicated subdirectory #255

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions HaikuPorter/BuildMaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@
from .Configuration import Configuration
from .Options import getOption
from .Port import Port
from .ReporterMongo import ReporterMongo
from .ReporterJson import ReporterJson
from .Utils import ensureCommandIsAvailable, sysExit, warn, info

from .Builders.Builder import _BuilderState
from .Builders.LocalBuilder import LocalBuilder
from .Builders.RemoteBuilderSSH import RemoteBuilderSSH

from .Reporters.ReporterMongo import ReporterMongo
from .Reporters.ReporterJson import ReporterJson

from .Utils import ensureCommandIsAvailable, sysExit, warn, info


import errno
import json
import logging
Expand Down
File renamed without changes.
File renamed without changes.