fix tests

This commit is contained in:
Nikolay Khabarov
2017-05-14 04:04:06 +03:00
parent 81ead65304
commit 7b6d0c551f
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env python
from cnc.hal_raspberry.rpgpio_private import *
from rpgpio_private import *
import time
import logging
+1 -1
View File
@@ -3,7 +3,7 @@ set -e
PASS=raspberry
ADDR=pi@192.168.0.208
if [ ! -z $1 ]; then
ADDR=$1
ADDR=pi@$1
fi
find . -name "*.py" -o -name "pycnc" | tar -cjf $(dirname "$0")/pycnc.tar.bz2 -T -
sshpass -p${PASS} scp $(dirname "$0")/pycnc.tar.bz2 "${ADDR}:~/pycnc"
+1 -1
View File
@@ -3,7 +3,7 @@ set -e
PASS=raspberry
ADDR=pi@192.168.0.208
if [ ! -z $1 ]; then
ADDR=$1
ADDR=pi@$1
fi
sshpass -p${PASS} scp $(dirname "$0")/../cnc/hal_raspberry/rpgpio_private.py "${ADDR}:~"
sshpass -p${PASS} scp $(dirname "$0")/../cnc/hal_raspberry/rpgpio.py "${ADDR}:~"