@@ -56,7 +56,7 @@ def test_tpch(self):
56
56
for k , v in ref .items ()
57
57
}
58
58
59
- w , i = WorkloadTests .load ("tune/protox/tests/unittest_benchmark_configs/unittest_tpch.yaml" , Path ("tune/protox/tests/unittest_tpch_dir" ))
59
+ w , i = WorkloadTests .load ("tune/protox/tests/unittest_benchmark_configs/unittest_tpch.yaml" , Path ("tune/protox/tests/unittest_tpch_dir" ). resolve () )
60
60
self .assertEqual (i .class_mapping , ref )
61
61
62
62
def test_job (self ):
@@ -68,7 +68,7 @@ def test_job(self):
68
68
for k , v in ref .items ()
69
69
}
70
70
71
- w , i = WorkloadTests .load ("tune/protox/tests/unittest_benchmark_configs/unittest_job_full.yaml" , Path ("tune/protox/tests/unittest_job_full_dir" ))
71
+ w , i = WorkloadTests .load ("tune/protox/tests/unittest_benchmark_configs/unittest_job_full.yaml" , Path ("tune/protox/tests/unittest_job_full_dir" ). resolve () )
72
72
self .assertEqual (i .class_mapping , ref )
73
73
74
74
def test_dsb (self ):
@@ -80,7 +80,7 @@ def test_dsb(self):
80
80
for k , v in ref .items ()
81
81
}
82
82
83
- w , i = WorkloadTests .load ("tune/protox/tests/unittest_benchmark_configs/unittest_dsb.yaml" , Path ("tune/protox/tests/unittest_dsb_dir" ))
83
+ w , i = WorkloadTests .load ("tune/protox/tests/unittest_benchmark_configs/unittest_dsb.yaml" , Path ("tune/protox/tests/unittest_dsb_dir" ). resolve () )
84
84
self .diff_classmapping (ref , i .class_mapping )
85
85
86
86
def test_tpcc (self ):
@@ -92,5 +92,5 @@ def test_tpcc(self):
92
92
for k , v in ref .items ()
93
93
}
94
94
95
- w , i = WorkloadTests .load ("tune/protox/tests/unittest_benchmark_configs/unittest_tpcc.yaml" , Path ("tune/protox/tests/unittest_tpcc_dir" ))
95
+ w , i = WorkloadTests .load ("tune/protox/tests/unittest_benchmark_configs/unittest_tpcc.yaml" , Path ("tune/protox/tests/unittest_tpcc_dir" ). resolve () )
96
96
self .assertEqual (i .class_mapping , ref )
0 commit comments