We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried to use lintr for the package testing with the GitLab CI. I got the following error:
lintr
$ Rscript -e 'lintr::lint_package()' Error in httr::status_code(response) : object 'response' not found Calls: <Anonymous> -> print.lints -> github_comment -> <Anonymous> Execution halted
Now ci_type() support only Travis CI and Wercker CI on Github.
ci_type()
Seems reason of the error in the following rows:
I find a simple workaround: to unset CI environment variable.
CI
The text was updated successfully, but these errors were encountered:
Update .gitlab-ci.yml according to this issue r-lib/lintr#166
63cfeae
I have this same issue in CircleCI 2.0. Adding export CI="" before the lint step also worked for me.
export CI=""
Sorry, something went wrong.
5cdda4e
No branches or pull requests
I tried to use
lintr
for the package testing with the GitLab CI. I got the following error:Now
ci_type()
support only Travis CI and Wercker CI on Github.Seems reason of the error in the following rows:
I find a simple workaround: to unset
CI
environment variable.The text was updated successfully, but these errors were encountered: