We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf991a4 commit e70be21Copy full SHA for e70be21
1 file changed
server/workers/common/common/aquanavi/mapping.py
@@ -291,12 +291,15 @@ def load_and_prepare_dataframe():
291
DataFrame: Pandas DataFrame with information from CSVs.
292
"""
293
csv_real_path = Path(CSV_PATH_WITH_REAL_DATA)
294
+ csv_test_path = Path(CSV_PATH_WITH_TEST_DATA)
295
296
check_that_csv_file_exists(csv_real_path)
297
+ check_that_csv_file_exists(csv_test_path)
298
299
df_real = pd.read_csv(csv_real_path).fillna("")
300
+ df_test = pd.read_csv(csv_test_path).fillna("")
301
- df = pd.concat([df_real], ignore_index=True)
302
+ df = pd.concat([df_real, df_test], ignore_index=True)
303
check_that_required_columns_exists(df, CSV_PATH_WITH_REAL_DATA)
304
305
# remove duplicates based on all columns
0 commit comments