mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
11 lines
322 B
Bash
Executable file
11 lines
322 B
Bash
Executable file
#!/bin/bash
|
|
PYTHONPATH=.:$PYTHONPATH
|
|
|
|
if [ -n "$TEAMCITY_VERSION" ]; then
|
|
if ! pip3 list --format=columns | grep -q teamcity-messages; then
|
|
pip3 install teamcity-messages
|
|
fi
|
|
python3 -m teamcity.unittestpy discover -s tests -p test_*.py
|
|
else
|
|
python3 -m unittest discover -v -s tests -p test_*.py
|
|
fi
|