-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
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
Generated Cucumber JSON missing the uri property #609
Comments
+1 Also missing |
Yes, I would like to address this issue. Most of the issues that Dirk closed before he handed off the project will be reopened and worked eventually. Most of my time so far has been spent trying to get the dotnet standard/core version working. I have most of it functional but still have some unit tests failing. Once I get past that roadblock I'll start addressing more of the functionality issues. |
I have the same issue as @rdasan as now the only way to convert SpecFlow results into Cucumber json is via official SpecFlow runner SpecRun, requiring online account binding and relying on Mono, also conflicting with SpecFlow xUnit runner. My use case is Linux-based CI and MacOS-based development environment, so I look into Pickles or SpecNuts. |
Update filesystem abstraction nuget package System.IO Make related changes to tests: use IDirectoryInfo instead of DirectoryInfoBase, IFileSystemInfo instead of FileSystemInfoBase, IFileInfo instead of FileInfoBase Update DocumentFormat.OpenXML package, but still have xml-related error on MacOS during unit tests Use filesystem to build paths Do not use Windows-specific filepaths like "c:\file" Use Environment.NewLine instead of \r\n Update NFluent to compare strings thinking less of different line endings on different platforms picklesdoc#609
Produce test result value according to https://github.com/cucumber/cucumber-json-schema Update existing cucumber tests to run on non-windows platform picklesdoc#609
* Update tests to launch on non-windows platform Update filesystem abstraction nuget package System.IO Make related changes to tests: use IDirectoryInfo instead of DirectoryInfoBase, IFileSystemInfo instead of FileSystemInfoBase, IFileInfo instead of FileInfoBase Update DocumentFormat.OpenXML package, but still have xml-related error on MacOS during unit tests Use filesystem to build paths Do not use Windows-specific filepaths like "c:\file" Use Environment.NewLine instead of \r\n Update NFluent to compare strings thinking less of different line endings on different platforms #609 * Update cucumber json report format to match official json schema Produce test result value according to https://github.com/cucumber/cucumber-json-schema Update existing cucumber tests to run on non-windows platform #609 * Add feature uri to cucumer json report Add feature base uri parameter to command line * Add feature and step id, hidden field to Cucumber json report * Make Pickles.CommandLine packable as dotnet tool Update csproj to not use deprecated fields
Hi I'm using Pickles to generate
Cucumber Json
format from my Test Results file. However I see that the generatedcucumberResults.json
is missing theuri
property. I am planning to use the generated cucumber json to publish the cucumber results back into a BDD JIRA plugin and that plugin requires the correct Cucumber JSON format that includes auri
property in the generated Cucumber Json.I see that this issue has been mentioned earlier in this closed issue : #278
#278 (comment)
Are there any plans to support this moving forward?
The text was updated successfully, but these errors were encountered: