Skip to content

Commit e2c36d8

Browse files
committed
Update test results and conftest instructions
1 parent 9a26b19 commit e2c36d8

File tree

2 files changed

+1746
-1320
lines changed

2 files changed

+1746
-1320
lines changed

tests/integ/modin/conftest.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,14 @@ def read_hybrid_known_failures():
5757
Read `modin_hybrid_integ_results.csv` and create a pandas
5858
dataframe filtered down to only the failed tests. You can regenerate
5959
this file by:
60+
* Delete the old file, "tests/integ/modin/modin_hybrid_integ_results.csv"
6061
* Collecting the hybrid test results with pytest:
6162
pytest tests/integ/modin -n 10
6263
--enable_modin_hybrid_mode
63-
--csv tests/integ/modin/modin_hybrid_integ_results.csv
64+
--csv tests/integ/modin/modin_hybrid_integ_results-input.csv
6465
* Pre-filtering and sorting the results to reduce the file and diff size:
6566
import pandas as pd
66-
df = pd.read_csv("tests/integ/modin/modin_hybrid_integ_results.csv")
67+
df = pd.read_csv("tests/integ/modin/modin_hybrid_integ_results-input.csv")
6768
filtered = df[["module", "name", "message", "status"]][
6869
df["status"].isin(["failed", "xfailed", "error"])
6970
]

0 commit comments

Comments
 (0)