9 lines
157 B
Bash
Executable File
9 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
MODULE_PATH=`python3 -c "import psutil; print(psutil.__file__)"`
|
|
TESTDIR=`dirname $MODULE_PATH`/tests
|
|
|
|
python3 $TESTDIR/test_unicode.py
|