Add a README.md to `test/BaselineOutput`
See original GitHub issueWe should have a README.md
to the test/BaselineOutput
folder to explain its purpose.
(Updated on 2018-07-02 to reflect the new location of the folder)
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (7 by maintainers)
Top Results From Across the Web
How can I add a README.md file with Xcode?
1 - Create a new file by ctrl+click in root folder of the project within xCode. ... 2 - Once done choose file...
Read more >How to create README file inside sub-directory on GitHub
Go to the directory directory browsing on GitHub . Create a new file GitHub file creation button; Name it as README.md entering file...
Read more >How can I add README.md to my UiPath project? - Studio
Create a new README.md file in the project directory using any text editor or command-line tool. Add the desired content to the README.md...
Read more >About READMEs - GitHub Docs
You can add a README file to your repository to tell other people why your project is useful, what they can do with...
Read more >Basic writing and formatting syntax
Create sophisticated formatting for your prose and code on GitHub with simple syntax.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Because it would be sorted last in the folder view, so it’s easy to find. 😃
@justinormont I like your
/test/BaselineOutput
suggestion.The intention of that directory is that it mirrors the
TestOutput
directory, produced by our tests. (In this way we can review any divergences between the expected output (in the baselines), and the actual output (as actually output by the test.This however brings up what might be a larger (different?) issue. The test outputs used to be written just to the root directory, alongside
ZBaselines
. I might like them to be written to/test/TestOutput
… that way, you get the two peer directories right next to each other.Right now, as near as I can tell, the test output is not being written to a single directory, which makes tracking changes to baselines harder to find, and makes the practice of using diff tools to see all the test divergences at a glance now impossible (I have, for example, one
TestOutput
directory atMicrosoft.ML.Core.Tests\netcoreapp2.0\TestOutput
in my build, and anotherTestOutput
directory at ``). Also it’s being put in a very, very odd location: thebin
directory right next to the test assemblies. I’m not sure the binary directory is really an appropriate location for test output.I’m not sure why it was changed to this new system exactly, but we should revisit, maybe instead writing them to
test/TestOutput
, or something.Also hi @costin-eseanu , you seem familiar somehow. 😄