.playlist support?
See original GitHub issueHey,
is there a feature request already to support a .playlist
file as argument?
Right now I am using a parser I wrote to parse .playlist
files to a .txt
file to use with --testlist={pathToFile}
.
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (7 by maintainers)
Top Results From Across the Web
Create playlists - Spotify
Pick your device for how to create, edit, and delete playlists. Mobile and tablet. Desktop. Need some inspiration? Get Recommended Songs at the...
Read more >Daily Playlists - Easy Playlist Pitching
Share your music with thousands of curators and playlists in seconds - for free! Save time on music promotion and focus on creating...
Read more >PlaylistSupply | Playlist Promo Tool | Curator Mail Finder
PlaylistSupply lets you research data for playlist promo campaigns and get ahead of the competition. Find the most verified playlist curators now.
Read more >Create & manage playlists - Computer - YouTube Help
A playlist is a collection of videos. Anybody can make playlists, share them, and friends can add videos to your playlist. You can...
Read more >Playlist Push: Music Promotion Services
Submit your track to Spotify Playlist Curators. Get your music in TikTok Videos. Trusted by over 25000 artists. ... We're here to help...
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
Strictly speaking, the console itself isnāt extensible although sometimes we make it seem that way. It can use an engine extension, for example, and has special code to deal with some of them.
The teamcity extension is a good example. The console knows it exists and can activate it in response to the --teamcity option but the option had to be hard coded.
I imagine this would work in a similar way. The console would pull test names out of a file and pass them on to the filter builder.
I originally thought about having the console take extensions just like the engine. Thatās what the unimplemented āAddinsā feature was about. You would bundle an engine extension with a corresponding runner extension needed to make use of it. But the need was never that great considering how simple the console runner is. Might be different with a GUI.
I agree with you that the value is somewhat low for this feature, but itās also an easy one and canāt currently be implemented except by changing the console.
Hey @MPasadu - I presume youāre the guy who asked the same question on Stack Overflow the other day? š
To transfer some of my comments - I donāt believe the NUnit console itself should support a .playlist file, but the extensibility of the console should allow for someone to write an extension to do so, which I donāt believe is currently possible.
I donāt believe there is currently any extensibility point to add a test filter. An
IFilterProvider
extension would be cool - and also the functionality to add custom command line arguments to the console, which I think has been discussed before.Charlie/Mikkel, what do you guys think? š