We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0acaffa commit c75922aCopy full SHA for c75922a
2 files changed
test-on-device.sh
@@ -0,0 +1,3 @@
1
+#!/bin/bash -ex
2
+
3
+rsync --help
test.sh
@@ -22,6 +22,15 @@ docker run -d --privileged -i --name ${device} -p 22:22 ${device} /sbin/init
22
23
./integration/wait-ssh.sh docker root syncloud 22
24
25
+sshpass -p syncloud scp -o StrictHostKeyChecking=no test-on-device.sh root@docker:/test-on-device.sh
26
+DOCKER_RUN="sshpass -p syncloud ssh -o StrictHostKeyChecking=no docker"
27
28
+${DOCKER_RUN} /test-on-device.sh
29
30
+#cd integration
31
+#pip install -r requirements.txt
32
+#py.test -sx verify.py --domain=${DOMAIN} --device-host=docker --arch=${ARCH}
33
34
docker kill ${device}
35
docker rm ${device}
36
docker rmi ${device}
0 commit comments