DATA-DOG / go-sqlmock

Sql mock driver for golang to test database interactions
Other
6.14k stars 407 forks source link

Remove sudo setting from travis.yml #167

Closed sekky0905 closed 5 years ago

sekky0905 commented 5 years ago

Change

Remove sudo: false setting from travis.yml .

Context

According to the following posts, Travis-CI had two Linux infrastructures which are containers and virtual machines, but recently Travis-CI was combined two Linux infrastructures into a virtual machine-based Linux infrastructures.

https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration https://blog.travis-ci.com/2018-10-04-combining-linux-infrastructures

Now Container-based environment is duplicated.

Build Environment Overview - Travis CI

If you currently specify sudo: false in your .travis.yml, we recommend removing that configuration soon.

quoted by https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration

codecov-io commented 5 years ago

Codecov Report

Merging #167 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #167   +/-   ##
=======================================
  Coverage   91.25%   91.25%           
=======================================
  Files          13       13           
  Lines         720      720           
=======================================
  Hits          657      657           
  Misses         44       44           
  Partials       19       19

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 3f9954f...9daf240. Read the comment docs.

l3pp4rd commented 5 years ago

Thanks ;)