swh:1:snp:147c5a9160b26fead84b349fc25e0a0058a11de1
Raw File
Tip revision: d52e52c51e3f7c5b0e12f95829b8cf4886bb3379 authored by Alexej Schatz on 26 October 2022, 14:36:09 UTC
test implementations for Autopilot, Bpod and pyControl moved to an own folder
Tip revision: d52e52c
main.py
import zipfile
import perf_tests_boxplot_set
import perf_tests_boxplot_read_set
import perf_tests_mean_read_set
import stress_test_boxplot_labnet
import latencies_chart

# unzip the data
with zipfile.ZipFile("data.zip", 'r') as zip_ref:
    zip_ref.extractall("data")

# use template.tex to create the boxplot latex file for the set test
perf_tests_boxplot_set.create_tex_file()

# use template.tex to create the boxplot latex file for the "set and read" test
perf_tests_boxplot_read_set.create_tex_file()

# use template.tex to create the bar plot latex file for the "set and read" test
perf_tests_mean_read_set.create_tex_file()

# create the box plot for the "stress test"
stress_test_boxplot_labnet.create_tex_file()

# use template.tex to create the bar plot latex file with latencies
latencies_chart.create_tex_file()
back to top