-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add start/end data to test and job_id to filename
- Loading branch information
1 parent
685c895
commit 3e88a40
Showing
2 changed files
with
19 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import pytest | ||
from datetime import datetime | ||
|
||
@pytest.fixture(scope="function", autouse=True) | ||
def record_test_timestamp(record_property): | ||
start_timestamp = datetime.strftime(datetime.now(), "%Y-%m-%dT%H:%M:%S%z") | ||
record_property("start_timestamp", start_timestamp) | ||
yield | ||
end_timestamp = datetime.strftime(datetime.now(), "%Y-%m-%dT%H:%M:%S%z") | ||
record_property("end_timestamp", end_timestamp) |