From deeba250e455c8ff6bd0bddbece93edcec7dc3ab Mon Sep 17 00:00:00 2001 From: Blair Vanderlugt Date: Wed, 7 Jul 2021 14:24:26 -0700 Subject: [PATCH] fix eth and meta tests --- apps/cic-eth/.gitlab-ci.yml | 4 +++- apps/cic-meta/.gitlab-ci.yml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/cic-eth/.gitlab-ci.yml b/apps/cic-eth/.gitlab-ci.yml index 188f0e42..410efdec 100644 --- a/apps/cic-eth/.gitlab-ci.yml +++ b/apps/cic-eth/.gitlab-ci.yml @@ -27,7 +27,9 @@ test-mr-cic-eth: image: $MR_IMAGE_TAG script: - cd apps/$APP_NAME/ - - pip install -r test_requirements.txt + - 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_eth --cov-fail-under=90 --cov-report term-missing tests needs: ["build-mr-cic-eth"] rules: diff --git a/apps/cic-meta/.gitlab-ci.yml b/apps/cic-meta/.gitlab-ci.yml index 730b00a8..ac157031 100644 --- a/apps/cic-meta/.gitlab-ci.yml +++ b/apps/cic-meta/.gitlab-ci.yml @@ -8,7 +8,7 @@ build-mr-cic-meta: extends: - .py_build_merge_request - - .cic_notify_variables + - .cic_meta_variables rules: - if: $CI_PIPELINE_SOURCE == "merge_request_event" changes: