Skip to content

Commit

Permalink
src: use kernelci.legacy.cli
Browse files Browse the repository at this point in the history
The kernelci.cli module is now being moved to kernelci.legacy.cli so
we can have the new implementation in kernelci.cli instead.  Update
all the pipeline services accordingly.

Signed-off-by: Guillaume Tucker <[email protected]>
  • Loading branch information
gctucker authored and nuclearcat committed Oct 17, 2023
1 parent a96c348 commit 3711ed6
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/fstests/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import kernelci.config
import kernelci.db
import kernelci.lab
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts

TEMPLATES_PATHS = ['config/runtime',
'/etc/kernelci/runtime',
Expand Down
2 changes: 1 addition & 1 deletion src/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import kernelci
import kernelci.config
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts

from base import Service

Expand Down
2 changes: 1 addition & 1 deletion src/regression_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import kernelci
import kernelci.config
import kernelci.db
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts

from base import Service

Expand Down
2 changes: 1 addition & 1 deletion src/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import kernelci.runtime
import kernelci.scheduler
import kernelci.storage
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts

from base import Service

Expand Down
2 changes: 1 addition & 1 deletion src/send_kcidb.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import kernelci
import kernelci.config
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts
from kcidb import Client
import kcidb

Expand Down
2 changes: 1 addition & 1 deletion src/tarball.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import kernelci
import kernelci.build
import kernelci.config
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts
import kernelci.storage

from base import Service
Expand Down
2 changes: 1 addition & 1 deletion src/test_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import kernelci.config
import kernelci.db
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts
import jinja2

from kernelci_pipeline.email_sender import EmailSender
Expand Down
2 changes: 1 addition & 1 deletion src/timeout.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import kernelci
import kernelci.config
import kernelci.db
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts

from base import Service

Expand Down
2 changes: 1 addition & 1 deletion src/trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import kernelci.build
import kernelci.config
import kernelci.db
from kernelci.cli import Args, Command, parse_opts
from kernelci.legacy.cli import Args, Command, parse_opts
import urllib
import requests

Expand Down

0 comments on commit 3711ed6

Please sign in to comment.