All checks were successful
build / test (3.10) (push) Successful in 6s
build / test (3.11) (push) Successful in 6s
build / test (3.12) (push) Successful in 6s
build / test (3.13) (push) Successful in 6s
build / test (3.9) (push) Successful in 6s
build / lint (push) Successful in 7s
build / mypy (push) Successful in 8s
build / test (3.10) (release) Successful in 6s
build / test (3.11) (release) Successful in 6s
build / test (3.12) (release) Successful in 6s
build / test (3.13) (release) Successful in 6s
build / test (3.9) (release) Successful in 6s
build / lint (release) Successful in 8s
build / mypy (release) Successful in 8s
build / Build distributions (push) Successful in 7s
build / Build distributions (release) Successful in 8s
build / deploy (push) Has been skipped
build / deploy (release) Successful in 6s
28 lines
457 B
Bash
Executable File
28 lines
457 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Initialize venv
|
|
python3 -m venv .venv
|
|
source .venv/bin/activate
|
|
|
|
# Install test dependencies
|
|
pip install -r requirements.txt
|
|
|
|
# Install dut
|
|
pip install -e "../[cli]"
|
|
|
|
# Run lint
|
|
pylint --rcfile pylint.rc ../src/peakrdl_python_regmap
|
|
|
|
# Run static type checking
|
|
mypy ../src/peakrdl_python_regmap
|
|
|
|
# Run unit tests
|
|
pytest -n auto --cov=peakrdl_python_regmap
|
|
|
|
# Generate coverage report
|
|
coverage html -i -d htmlcov
|