Skip to content

Commit

Permalink
Updating global_vars to enable setting the execution start time
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalinn committed Aug 24, 2024
1 parent 7513d9a commit 9d064ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions behavex/global_vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ def progress_bar_instance(self, progress_bar_instance):
def execution_start_time(self):
return self._execution_start_time

@execution_start_time.setter
def execution_start_time(self, execution_start_time):
self._execution_start_time = execution_start_time

@property
def execution_elapsed_time(self):
return time.time() - self._execution_start_time
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='behavex',
version='4.0.1rc4',
version='4.0.1rc6',
license="MIT",
platforms=['any'],
python_requires='>=3.5',
Expand Down

0 comments on commit 9d064ca

Please sign in to comment.