Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pytest_rally/rally.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ def install_config_file(self):

def delete_config_file(self):
self.logger.info("Removing Rally config from [%s]", self.config_location)
os.remove(self.config_location)
try:
os.remove(self.config_location)
except FileNotFoundError:
self.logger.warning("Rally config file not found at [%s]", self.config_location)

def set_revision(self):
self.revision = process.run_command_with_output(f"esrally --version").rstrip()
Expand Down