Skip to content
Snippets Groups Projects

fix tox pipeline

Merged Karel van Klink requested to merge hotfix/tox-fix into develop
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
+ 4
2
@@ -4,8 +4,10 @@ The main module, from where GSO is run.
from orchestrator import OrchestratorCore
from orchestrator.cli.main import app as core_cli
from orchestrator.settings import AppSettings
import gso.products # pylint: disable=unused-import
import gso.workflows # pylint: disable=unused-import
# pylint: disable=unused-import
import gso.products # noqa: F401
# pylint: disable=unused-import
import gso.workflows # noqa: F401
app = OrchestratorCore(base_settings=AppSettings())
Loading