mirror of
https://github.com/hacs/integration.git
synced 2025-07-23 02:55:44 +00:00
14 lines
149 B
Bash
Executable File
14 lines
149 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
python3 -m \
|
|
pytest \
|
|
tests \
|
|
-rxf -x -v -l \
|
|
--cov=./ \
|
|
--cov-report=xml
|
|
|