5e305bf3b6
Re-enable the possibility to define custom mouse actions by binding commands to "<alias|module>.<left-click|right-click|...>". These commands are then executed as shell commands. fixes #30
11 lines
219 B
Bash
Executable file
11 lines
219 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "testing with $(python2 -V 2>&1)"
|
|
python2 $(which nosetests) --rednose -v tests/
|
|
|
|
if [ $? == 0 ]; then
|
|
echo
|
|
|
|
echo "testing with $(python3 -V 2>&1)"
|
|
python3 $(which nosetests-3) --rednose -v tests/
|
|
fi
|