-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[python] Unskip profiling test for PROF-11018
- Loading branch information
1 parent
e6c32ad
commit 579785e
Showing
1 changed file
with
1 addition
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
"""Misc checks around data integrity during components' lifetime""" | ||
import re | ||
from utils import weblog, interfaces, scenarios, features, bug, context | ||
from utils import weblog, interfaces, scenarios, features | ||
|
||
|
||
TIMESTAMP_PATTERN = re.compile(r"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d{1,9})?Z") | ||
|
@@ -13,7 +13,6 @@ | |
@features.profiling | ||
@features.dd_profiling_enabled | ||
@scenarios.profiling | ||
@bug(context.library >= "[email protected]", reason="PROF-11018") | ||
class Test_Profile: | ||
""" Basic testing of profiling """ | ||
|
||
|