ci: pytest dependencies
This commit is contained in:
parent
a4b1c6a53f
commit
4834a98466
1 changed files with 8 additions and 1 deletions
|
|
@ -1,4 +1,11 @@
|
||||||
from git import Repo, Remote
|
try:
|
||||||
|
from git import Repo, Remote
|
||||||
|
except ImportError:
|
||||||
|
import sys
|
||||||
|
|
||||||
|
sys.stderr.write("gitpython is not installed, skipping git service\n")
|
||||||
|
sys.stderr.flush()
|
||||||
|
|
||||||
from injectable import injectable
|
from injectable import injectable
|
||||||
|
|
||||||
from karl.config import GitConfig, get_settings
|
from karl.config import GitConfig, get_settings
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue