Update GitHub Actions workflow

This commit is contained in:
Andrew Kay
2021-10-03 21:29:12 -05:00
parent a34b3d51b7
commit 9d1335068f
2 changed files with 20 additions and 15 deletions

View File

@@ -1,3 +1,8 @@
#!/bin/sh
#!/bin/bash
python -m unittest discover tests
# Display verbose output in CI environment.
if [ -n "$CI" ]; then
OPTS=-v
fi
python -m unittest discover $OPTS tests