Skip to content
Snippets Groups Projects
Commit 93a3b880 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

launch: allow to skip the system check

parent fe964af5
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,13 @@
# Ensure asv now machine characteristics
asv machine --yes
# Check that the machine is ready for benchmark
python -m perf system show | grep "OK!"
echo check that system is ready for benchmark
echo "(use ASV_SKIP_SYSTEM_CHECK=1 to skip it)"
if [ -z "${ASV_SKIP_SYSTEM_CHECK:-}" ]; then
# Check that the machine is ready for benchmark
python -m perf system show
fi
# Ensure all repository are here
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment