2021-08-28 18:26:16 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
2021-12-08 13:53:54 +01:00
|
|
|
pip install --extra-index-url https://pip.grassrootseconomics.net \
|
2021-08-28 18:26:16 +02:00
|
|
|
--extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple \
|
|
|
|
-r test_requirements.txt
|
|
|
|
|
|
|
|
export PYTHONPATH=. && pytest -x --cov=cic_ussd --cov-fail-under=90 --cov-report term-missing tests/cic_ussd
|