#!/bin/bash

set -e

# run linting of python files
echo 'Running linting...'

flake8 config.py src/ tests/

# run pytest with args set
echo 'Running tests...'
python -m pytest $TEST_ARGS tests/unit

echo 'Done!'
