ReTest.jl icon indicating copy to clipboard operation
ReTest.jl copied to clipboard

Testing framework for Julia

Results 20 ReTest.jl issues
Sort by recently updated
recently updated
newest added

Using the built-in testing approach `i.e. running ] test`, my code slowed down to a crawl so I had to quit Julia. It was presumably caused by ReTest calling the...

I think a custom REPL mode (with [`ReplMaker.jl`](https://github.com/MasonProtter/ReplMaker.jl)?) could simplify the workflow for running the tests.

enhancement

For OSCAR, we use "testset templates" to provide generic conformance for various "interfaces" based on `Test`. These currently come in the form of a function that takes an object to...

Hi, The limitation to [not include files containing testsets from within testsets](https://juliatesting.github.io/ReTest.jl/stable/#Including-files-from-within-testsets) is a showstopper for our project, since we have our tests within a hierarchy of folders mimicking the...

Hi, Hope this MR makes ReTest a little more accessible to newcomers. This MR is pretty much done, maybe bar one or two points to clarify (specifically what `align_overflow` and...

If a developer were to run the tests for `ReTest.jl`, they would observe a number of tests failing, such as those found in `Main.FailingLoops`. While there is a good reason...

As a user, I might want to split my tests up into multiple files, corresponding to separate modules. I would do this for separation of concerns, better organization, and reduce...

Hi there, I'm trying to use ReTest with an existing codebase, primarily for the parallel execution of tests. This codebase uses logging extensively, and the tests themselves may also include...

enhancement
help wanted

Taking the example from the docs: ```julia julia> retest("greet", verbose=2) # run only tests related to `greet()` Pass MyPackage: greet | 1 ``` If `greet` was super slow, you'd get...

enhancement
good first issue

I want to be able to run some cleanup code after my tests run regardless of whether they succeed or fail. I though I could just do this by wrapping...

enhancement