Use python3
On some distros, python binary links to python2. The tests seem to be expecting python3.
This commit is contained in:
parent
9e32c2668c
commit
6a3b3f139b
1 changed files with 7 additions and 7 deletions
14
run_tests.sh
14
run_tests.sh
|
@ -3,14 +3,14 @@
|
|||
set -euo pipefail
|
||||
|
||||
main() {
|
||||
python -m unittest
|
||||
python -m examples.case_study
|
||||
python -m examples.paper
|
||||
python -m examples.plot_load_distribution --output "/tmp"
|
||||
python -m examples.plot_node_loads --output "/tmp/load_nodes.pdf"
|
||||
python -m examples.plot_workload_distribution \
|
||||
python3 -m unittest
|
||||
python3 -m examples.case_study
|
||||
python3 -m examples.paper
|
||||
python3 -m examples.plot_load_distribution --output "/tmp"
|
||||
python3 -m examples.plot_node_loads --output "/tmp/load_nodes.pdf"
|
||||
python3 -m examples.plot_workload_distribution \
|
||||
--output "/tmp/workload_distribution.pdf"
|
||||
python -m examples.tutorial
|
||||
python3 -m examples.tutorial
|
||||
}
|
||||
|
||||
main
|
||||
|
|
Loading…
Reference in a new issue