Commit 53980a80 authored by Your Name's avatar Your Name
Browse files

add test file

parent 0c5e05f2
Loading
Loading
Loading
Loading

testall.bash

0 → 100755
+18 −0
Original line number Diff line number Diff line
#!/bin/bash

set -xev

pushd $(mktemp -d)
python3 -mvenv venv
. venv/bin/activate
pip install matplotlib
pip install git+ssh://git@git.ia2.inaf.it/hotwheels/core.git@v0.0.0alpha
pip install git+ssh://git@git.ia2.inaf.it/hotwheels/io.git@v0.0.0alpha
pip install git+ssh://git@git.ia2.inaf.it/hotwheels/integrate.git@v0.0.0alpha
pip install git+ssh://git@git.ia2.inaf.it/hotwheels/octree.git@v0.0.0alpha
pip install git+ssh://git@git.ia2.inaf.it/hotwheels/domain.git@v0.0.0alpha
pip install git+ssh://git@git.ia2.inaf.it/hotwheels/PM.git@v0.0.0alpha
python3 -m hotwheels.checkup hotwheels
popd

echo 'test ok'