Use python3 #2
1 changed files with 7 additions and 7 deletions
14
run_tests.sh
14
run_tests.sh
|
@ -3,14 +3,14 @@
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
python -m unittest
|
python3 -m unittest
|
||||||
python -m examples.case_study
|
python3 -m examples.case_study
|
||||||
python -m examples.paper
|
python3 -m examples.paper
|
||||||
python -m examples.plot_load_distribution --output "/tmp"
|
python3 -m examples.plot_load_distribution --output "/tmp"
|
||||||
python -m examples.plot_node_loads --output "/tmp/load_nodes.pdf"
|
python3 -m examples.plot_node_loads --output "/tmp/load_nodes.pdf"
|
||||||
python -m examples.plot_workload_distribution \
|
python3 -m examples.plot_workload_distribution \
|
||||||
--output "/tmp/workload_distribution.pdf"
|
--output "/tmp/workload_distribution.pdf"
|
||||||
python -m examples.tutorial
|
python3 -m examples.tutorial
|
||||||
}
|
}
|
||||||
|
|
||||||
main
|
main
|
||||||
|
|
Loading…
Reference in a new issue