mirror of
https://github.com/m5stack/esphome.git
synced 2026-05-20 11:52:52 -07:00
11 lines
196 B
Bash
11 lines
196 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||
|
|
cd "${script_dir}/.."
|
||
|
|
|
||
|
|
set -x
|
||
|
|
|
||
|
|
pytest -vvs --no-cov --tb=native -n 0 tests/integration/
|