Skip to content
Open
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
9 changes: 1 addition & 8 deletions integration_test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,14 +742,7 @@ def setUp(self) -> None:

# Load CSV Test Data
try:
# Resolve relative to this file if not absolute
data_dir = FLAGS.test_data_dir
if not Path(data_dir).is_absolute():
# Assumption: run from where this file is reachable via relative path
# Actually, FLAGS.test_data_dir is passed by run_conformance.sh
# Let's try to resolve it.
pass
test_data.load(data_dir)
test_data.load(FLAGS.test_data_dir)
except Exception as e: # pylint: disable=broad-exception-caught
logging.warning("Failed to load test CSV data: %s", e)

Expand Down
Loading