-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e36a2c7
commit 8ce0ca0
Showing
6 changed files
with
34 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,20 +7,19 @@ | |
__copyright__ = 'Copyright (C) 2018-2024, Nokia' | ||
__email__ = '[email protected], [email protected]' | ||
|
||
import sys | ||
|
||
default_variant = "threaded" | ||
|
||
|
||
def set_default_variant(variant): | ||
"""Set variant to use as default when requesting runner""" | ||
global default_variant | ||
global default_variant # pylint: disable=global-statement | ||
default_variant = variant | ||
|
||
|
||
def clear(): | ||
"""Cleanup configuration related to runners""" | ||
global default_variant | ||
global default_variant # pylint: disable=global-statement | ||
default_variant = "threaded" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters