mirror of
https://github.com/lowobservable/coax.git
synced 2026-01-12 00:43:00 +00:00
9 lines
135 B
Bash
Executable File
9 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Display verbose output in CI environment.
|
|
if [ -n "$CI" ]; then
|
|
OPTS=-v
|
|
fi
|
|
|
|
python -m unittest discover $OPTS tests
|