Skip to content

Commit 934fc40

Browse files
authored
Test speed benchmark without capture (#174)
* Test speed benchmark without capture * Remove second capture
1 parent 1eb0bda commit 934fc40

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

‎benchmarks/speed/test_project_speed_benchmark.py‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
def test_benchmark_speed_project():
66
root = Path(__file__).parent
77
# project_assets(root) # there are currently no assets defined for this project
8-
project_run(root, "setup", capture=True)
9-
project_run(root, "timing_cpu", capture=True)
8+
# don't capture due to encoding issues in windows
9+
project_run(root, "setup")
10+
project_run(root, "timing_cpu")

0 commit comments

Comments
 (0)