11 lines
177 B
Bash
Executable File
11 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit on any error
|
|
set -e
|
|
|
|
echo "Activating virtual environment..."
|
|
source ./venv/bin/activate
|
|
|
|
pytest --cov=scouter --cov-report=html
|
|
|
|
xdg-open htmlcov/index.html |