Code Monkey home page Code Monkey logo

Comments (6)

wgliang avatar wgliang commented on May 10, 2024

Thank you very much for pointing it out.

from goreporter.

nkovacs avatar nkovacs commented on May 10, 2024

Unfortunately, now all my unit tests fail.
When I try to run go test with an absolute path, it says "cannot import absolute path".

from goreporter.

wgliang avatar wgliang commented on May 10, 2024

yes,I am fixing the problem.

from goreporter.

wgliang avatar wgliang commented on May 10, 2024

Considering a variety of situations where the project is set to the current path (./) or the upper layer(../), I did not expect an elegant way to accommodate this situation, so I would force -p to set the relative path at the end of the project name.

Do you have a better solution?

from goreporter.

nkovacs avatar nkovacs commented on May 10, 2024

The issue is that filepath.Walk calls filepath.Join, which calls filepath.Clean, and that removes the leading "./", because it's not usually needed. However, go test needs the leading "./", because otherwise it interprets the argument as a package name (relative to "$GOPATH/src").

So the solution is to handle unittest.UnitTest appropriately. If DirList is guaranteed to return relative paths, then just prepending "." + filepath.Separator to the path before calling unittest.UnitTest fixes the issue (only tested on Linux, I think "." works on Windows too).

It seems only unittest has this issue, because it executes go test. The other linters stay in go code, and therefore they all handle the path correctly ("somedir" == "./somedir").

Also, what is the purpose of the variable called system (that's a confusing name). Why not just use filepath.Separator?

from goreporter.

nkovacs avatar nkovacs commented on May 10, 2024

I've pushed a quick and dirty fix that works for me on Linux with -p ./ and -p ../.

from goreporter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.