~mimecar/curso-ubuntu-phone-touch/trunk

« back to all changes in this revision

Viewing changes to HolaMundo/HolaMundo/tests/autopilot/run

  • Committer: Miguel Menéndez
  • Date: 2016-08-06 18:13:47 UTC
  • Revision ID: mimecar@innerzaurus.com-20160806181347-rjip9phmicolbfjt
Proyecto de introducción al curso de programación de Ubuntu Touch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
if [[ -z `which autopilot3` ]]; then
 
4
  echo "python3-autopilot is not installed. Skip"
 
5
  exit
 
6
fi
 
7
 
 
8
SCRIPTPATH=`dirname $0`
 
9
pushd ${SCRIPTPATH}
 
10
autopilot3 run HolaMundo
 
11
popd