Commit 26a6122 1 parent 09c1df3 commit 26a6122 Copy full SHA for 26a6122
File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ def build_benchmark_tex(
87
87
examples_path = EXAMPLES_REPO_PATH / "examples" ,
88
88
output_path = output_path ,
89
89
)
90
+ assert benchmarks_path .is_file ()
90
91
91
92
# convert markdown benchmark results to LaTeX
92
93
with set_dir (RELEASE_NOTES_PATH ):
@@ -97,9 +98,10 @@ def build_benchmark_tex(
97
98
)
98
99
assert not ret , out + err
99
100
assert tex_path .is_file ()
101
+ assert (RELEASE_NOTES_PATH / f"{ benchmarks_path .stem } .tex" ).is_file ()
100
102
101
- if ( DISTRIBUTION_PATH / f" { benchmarks_path . stem } .md" ). is_file ():
102
- assert ( RELEASE_NOTES_PATH / f" { benchmarks_path .stem } .tex" ). is_file ()
103
+ # clean up benchmark results
104
+ benchmarks_path .unlink ()
103
105
104
106
105
107
def build_deprecations_tex (force : bool = False ):
You can’t perform that action at this time.
0 commit comments