I am using gitlab code quality with Code-Quality.gitlab-ci.yml in my configuration (it relies on Code Climate), and I have import errors on the code quality report as shown below:
I also have the libraries (pandas here) in requirements.txt at the…
We've just turned on CodeClimate for our PRs, and have a ton of refactoring to do, but it's making our PR's fail for lines of code that weren't touched.
i.e. if I modify anywhere in a file, it will analyze every line in said file.
Is there a way to…
Currently I have a working circleci yaml file but it runs a separate test script for each app. It's not "DRY" and I think a better solution would be to run the test script from the root and loop over each app...but I can't figure out how to do that.…
Based on this question on StackOverflow, I added test coverage into my Gitlab CI/CD YAML file, and I expect the result gets uploaded into codeclimate.
- go get github.com/axw/gocov/gocov
- export CC_TEST_REPORTER_ID=My_REPO_ID
- curl -L…
I have written this code and code climate shows: Function _filter_empty_entities has a Cognitive Complexity of 7 (exceeds 5 allowed)
def _filter_empty_entities(payload):
attrs = list(iter_entity_attrs(payload))
Flag = False
for j in…
Trying to get mean temperature for a certain date over the last 5 years. Keep running into this same error. Any suggestions would be greatly appreciated!
get_prism_dailys(type="tmean", dates = as.Date("2018-06-01", "2017-06-01", "2016-06-01",…
We are using Azure devops to run our build and jacoco to do code coverage in azure build agent. We want to integrate code coverage reports to code climate.
Has anyone tried it ? I tried searching for proper documentation or steps and it seems to be…
The Code Climate advanced configuration documentation covers all configuration except test reporters.
Can the Code Climate test reporters be configured using codeclimate.yml or codeclimate.json so that configuration can be placed under version…
Am new to code climate and am facing this error when i run my github project on codeclimate.
codeclimate validate-config
ERROR: Unable to parse: (): found unexpected end of stream while scanning a quoted scalar at line 23 column 5
Below…
Code climate counts the lines of code in our project, but it seems to ignore Haskell files (only Java files are counted). Is there a way to configure code climate to change this behavior?
I currently have a .codeclimate.yml which starts as follows:
---
engines:
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
That is, CodeClimate is configured to work for…
I'm trying to setup Travis and CodeClimate integration but after setting test coverage configuration, my build started to fail.
My .travis.yml file contains something like
language: ruby
rvm:
- 2.5.0
branches:
only:
- master
services:
-…
I'm using CodeClimate's grep engine and I would like a pattern to verify that our code files end with a blank line. I've seen a lot of posts explaining how to count and find blank lines, but I want to specific check EOF.
What are the possible reasons a code climate gap badge would show up as a question mark/unknown?
The other badges are working however, I can see number of issues,
and % LoC Covered badges.
Here's my .codeclimate.yml file
engines:
rubocop:
…
I use code-climate integration in GitHub for a project and one of the engines in code climate is eslint. As of now, whenever a pull request is raised, eslint engine runs and checks for any issues and this is consuming a lot of time. The engines runs…