-
-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformat b/c of new version of black
- Loading branch information
Showing
9 changed files
with
41 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Custom template tag filters. | ||
Custom template tag filters. | ||
""" | ||
|
||
from importlib import import_module | ||
|
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 |
---|---|---|
@@ -1,42 +1,42 @@ | ||
""" | ||
Kiwi TCMS supports internal bug tracking functionality and | ||
integration between external bug trackers and the rest of the system. | ||
The integration interface is defined in :mod:`tcms.issuetracker.base` | ||
and can be overridden in subsequent implementations if desired. | ||
Kiwi TCMS supports internal bug tracking functionality and | ||
integration between external bug trackers and the rest of the system. | ||
The integration interface is defined in :mod:`tcms.issuetracker.base` | ||
and can be overridden in subsequent implementations if desired. | ||
The current scope is: | ||
The current scope is: | ||
- *1-click bug report* - by clicking a UI element inside TestExecution | ||
Kiwi TCMS will try to automatically report a new bug in the selected | ||
bug tracker. If this fails will fall back to opening a new browser | ||
window to manually enter the required information. Fields will be | ||
pre-filled with correct information when possible. | ||
- *1-click bug report* - by clicking a UI element inside TestExecution | ||
Kiwi TCMS will try to automatically report a new bug in the selected | ||
bug tracker. If this fails will fall back to opening a new browser | ||
window to manually enter the required information. Fields will be | ||
pre-filled with correct information when possible. | ||
- *automatic bug update* - when linking existing bug reports to TestExecution | ||
the bug report will be "linked" back to the TE. By default this is achieved | ||
by adding a comment to the bug report. | ||
- *automatic bug update* - when linking existing bug reports to TestExecution | ||
the bug report will be "linked" back to the TE. By default this is achieved | ||
by adding a comment to the bug report. | ||
- *show bug info* - on pages which display bugs the tester could | ||
see more contextual information by hovering the mouse over an info | ||
icon. A tooltip will appear. Default implementation is to display | ||
OpenGraph Protocol data for that URL. Information is cached. | ||
- *show bug info* - on pages which display bugs the tester could | ||
see more contextual information by hovering the mouse over an info | ||
icon. A tooltip will appear. Default implementation is to display | ||
OpenGraph Protocol data for that URL. Information is cached. | ||
.. important:: | ||
.. important:: | ||
Kiwi TCMS' own internal bug tracker is a light-weight solution for small | ||
teams. You can disable it by defining ``KIWI_DISABLE_BUGTRACKER=yes`` | ||
in your environment variables! | ||
Kiwi TCMS' own internal bug tracker is a light-weight solution for small | ||
teams. You can disable it by defining ``KIWI_DISABLE_BUGTRACKER=yes`` | ||
in your environment variables! | ||
.. important:: | ||
.. important:: | ||
Integration details for supported bug trackers can be found at | ||
:mod:`tcms.issuetracker.types`! | ||
Additional integrations are provided via add-ons. For more information | ||
see :mod:`trackers_integration.issuetracker`! | ||
Integration details for supported bug trackers can be found at | ||
:mod:`tcms.issuetracker.types`! | ||
Additional integrations are provided via add-ons. For more information | ||
see :mod:`trackers_integration.issuetracker`! | ||
.. important:: | ||
.. important:: | ||
Most integrations expect product names in Kiwi TCMS to match product names | ||
in the external issue tracker database. See individual documentation for | ||
specifics. | ||
Most integrations expect product names in Kiwi TCMS to match product names | ||
in the external issue tracker database. See individual documentation for | ||
specifics. | ||
""" |
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