[julia-users] Re: [ANNOUNCE] TestSetExtensions.jl

2016-10-29 Thread Florian Oswald
Good stuff! I like the idea of extending Base.Test

anyway you could easily integrate printing messages after failed tests?

https://groups.google.com/d/msg/julia-users/_cZ8y_-JAVA/8EcTWdxcAQAJ

cheers

On Thursday, 27 October 2016 17:27:38 UTC+2, Spencer Russell wrote:
>
> Hey All,
>
> I just registered the TestSetExtensions package, which collects some 
> extensions and convenience utilities to maximize your testing enjoyment. It 
> builds on the new Base.Test infrastructure in Julia v0.5 (also available in 
> v0.4 with the BaseTestNext package). It's designed so that you shouldn't 
> need to modify your tests at all if you're already 
> using @testset and @test - all the interactions with this package happen at 
> the top-level of your tests.
>
> https://github.com/ssfrr/TestSetExtensions.jl
>
> Right now is supports two features:
>
>
>1. Printing out green dots as your tests run so you can see them 
>progressing
>2. Collecting your test files and running them automatically so you 
>don’t have to manually add them to `runtests.jl`, and also so you can 
>easily specify a sub-set of your tests to run from the command line
>
>
> I mostly wrote it to encapsulate the things I want for my tests, but I’m 
> happy to take PRs for new features.
>
> Please kick the tires and let me know if it works (or doesn’t work) for 
> you!
>
> ssfrr
>


[julia-users] Re: [ANNOUNCE] TestSetExtensions.jl

2016-10-29 Thread pdobacz
Hey Spencer,

I like this! 

I have recently started a testing-related package as well, maybe you've 
noticed (https://github.com/pdobacz/PyTest.jl). It seems that both packages 
could work together and complement quite seamlessly, so I'll definitely 
give yours a try. 

BTW, do you think there is much demand for Julia testing tools?