File: test.sh

package info (click to toggle)
python-homeconnect 0.8.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 120 kB
  • sloc: python: 556; sh: 6; makefile: 5
file content (13 lines) | stat: -rwxr-xr-x 204 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

set -x 

python3 -m venv .venv

. .venv/bin/activate

pip3 install -r requirements_test.txt

pytest --cov=homeconnect/ --cov-report term-missing -vv ./tests/homeconnect

rm -rf .venv