a720baf407
Add testrun to also verify Python3 functionality. + Immediately fix a Python3 incompatibility. see #23
5 lines
103 B
Bash
Executable file
5 lines
103 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test=$(which nosetests)
|
|
python2 $test --rednose -v tests/
|
|
python3 $test --rednose -v tests/
|