From 78e3bd4a960c852be19813f752e1e5ea9978aa2f Mon Sep 17 00:00:00 2001 From: Quoc-Tuan Truong Date: Sat, 13 Jan 2024 12:03:52 -0800 Subject: [PATCH] Update CircleCI config file (#583) --- .circleci/config.yml | 6 +++--- .coveragerc | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cdc28cb40..a47864ea0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,9 +16,9 @@ jobs: name: Install dependencies no_output_timeout: 30m command: | - sudo pip install --upgrade pip - sudo pip install --only-binary=numpy,scipy numpy==1.22.4 scipy Cython pytest pytest-cov codecov - sudo pip install -e .[tests] + pip install --upgrade pip + pip install --only-binary=numpy,scipy numpy==1.22.4 scipy Cython pytest pytest-cov codecov + pip install -e .[tests] - run: name: Run tests no_output_timeout: 30m diff --git a/.coveragerc b/.coveragerc index 69e19bc96..5bffcfcff 100644 --- a/.coveragerc +++ b/.coveragerc @@ -14,3 +14,5 @@ include = omit = */cornac/models/* */cornac/datasets/* + # ignored until being fixed + cornac/eval_methods/propensity_stratified_evaluation.py