diff --git a/.circleci/config.yml b/.circleci/config.yml index b3ab46f68bee30d94da8571a347aa9ae1483bd7c..bbc979697f53a8e3c70fc8f8208864743ff3704d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,11 +14,12 @@ jobs: - restore_cache: key: deps9-{{ .Branch }} - run: + name: Install dependencies + no_output_timeout: 30m command: | sudo pip install --upgrade pip sudo pip install --only-binary=numpy,scipy numpy scipy pytest pytest-cov codecov sudo pip install -e .[tests] - no_output_timeout: 30m - save_cache: key: deps9-{{ .Branch }} paths: @@ -26,6 +27,8 @@ jobs: - "/usr/local/bin" - "/usr/local/lib/python3.6/site-packages" - run: + name: Run tests + no_output_timeout: 30m command: | python -m pytest --cov=cornac codecov || echo "codecov failed"