Skip to content

Commit

Permalink
Merge pull request #173 from utf/master
Browse files Browse the repository at this point in the history
Update codacy and circleCI configs
  • Loading branch information
ardunn authored Feb 2, 2019
2 parents 95a94eb + c3cbf8c commit 18b6171
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
command: |
python3 -m venv test_env
. test_env/bin/activate
pip install --upgrade pip
pip install -q --upgrade pip
pip install --quiet -r requirements.txt
# pip install --quiet -r requirements-optional.txt
Expand All @@ -33,12 +33,13 @@ jobs:
cd ~/matminer
git clone https://github.com/hackingmaterials/matminer.git
cd matminer
pip install -e .
pip install -q -e .
cd ~/automatminer
pip install -e .
pip install coverage
pip install codacy-coverage
pip install -q coverage
pip install -q codacy-coverage
coverage run setup.py test
coverage xml
python-codacy-coverage -r coverage.xml
Expand All @@ -47,4 +48,4 @@ jobs:
- save_cache:
paths:
- ./test_env
key: v1-dependencies-{{ checksum "requirements.txt" }}
key: v1-dependencies-{{ checksum "requirements.txt" }}
3 changes: 2 additions & 1 deletion .codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ exclude_paths:
- '.circleci/*'
- 'docs/**'
- 'docs/*'
- '**/docs/**'
- '**/docs/**'
- '**/tests/**'

0 comments on commit 18b6171

Please sign in to comment.