realm / SwiftCov

A tool to generate test code coverage information for Swift.
MIT License
561 stars 41 forks source link

Stop yielding the root directory #53

Closed stephencelis closed 9 years ago

stephencelis commented 9 years ago

The root directory doesn't need to be sent along with the other files. It isn't used. This ensures that project directories with the suffix ".swift" (in libraries like Dollar.swift, Few.swift, and SQLite.swift) aren't assumed to be Swift files later in the pipeline.

Fixes #42.

kishikawakatsumi commented 9 years ago

You are exactly right. Thanks a lot for your work!