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