#!/bin/bash

set -e

echo 'Running linting...'
ruff check pythonfeatures tests

echo 'Running tests...'
pytest -vv tests/ \
		--cov pythonfeatures/ \
		--cov-report xml \
		--cov-report term \
		--junitxml=pyunit.xml

echo 'Done.'
