11 lines
309 B
Bash
11 lines
309 B
Bash
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
pip install --extra-index-url https://pip.grassrootseconomics.net:8433 \
|
|
--extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple \
|
|
-r test_requirements.txt
|
|
|
|
export PYTHONPATH=. && pytest -x --cov=cic_cache --cov-fail-under=90 --cov-report term-missing tests
|
|
|