File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
templates/benchmarks/custom_bms Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1- # REPONAME custom benchmarks
1+ # SciTools custom benchmarks
22
33To be recognised by ASV, these benchmarks must be packaged and installed in
44line with the
Original file line number Diff line number Diff line change 1717
1818
1919def package_files (new_dir : Path ) -> None :
20- """Package REPONAME's custom benchmarks for detection by ASV.
20+ """Package SciTools' custom benchmarks for detection by ASV.
2121
2222 Parameters
2323 ----------
2424 new_dir : Path
2525 The directory to package the custom benchmarks in.
2626 """
27- asv_bench_REPONAME = new_dir / "asv_bench_REPONAME "
28- benchmarks = asv_bench_REPONAME / "benchmarks"
27+ asv_bench_scitools = new_dir / "asv_bench_scitools "
28+ benchmarks = asv_bench_scitools / "benchmarks"
2929 benchmarks .mkdir (parents = True )
30- (asv_bench_REPONAME / "__init__.py" ).touch ()
30+ (asv_bench_scitools / "__init__.py" ).touch ()
3131
3232 for py_file in this_dir .glob ("*.py" ):
3333 if py_file != Path (__file__ ):
@@ -39,7 +39,7 @@ def package_files(new_dir: Path) -> None:
3939 py_project .write_text (
4040 """
4141 [project]
42- name = "asv_bench_REPONAME "
42+ name = "asv_bench_scitools "
4343 version = "0.1"
4444 """
4545 )
@@ -52,4 +52,4 @@ def main():
5252
5353
5454if __name__ == "__main__" :
55- main ()
55+ main ()
You can’t perform that action at this time.
0 commit comments