Re: [Avocado-devel] Implement skip class decorator

2020-05-08 Thread Jan Richter
> > Yes you are right it is possible to do that, but I think that we can't > just avoid loading the class, because we have to mark all the test inside > the class as skipped, and also I don't see the way how to deal with > constraints in skipIf() and skipUnless() methods when we avoid loading > cla

Re: [Avocado-devel] Implement skip class decorator

2020-05-04 Thread Amador Pahim
On Mon, May 4, 2020 at 11:55 AM Jan Richter wrote: > Hello everyone, > some time ago was added the ability for avocado.skip decorators to be used > on classes. This decorator just loop over all the methods of the class and > marks them as skip > https://github.com/avocado-framework/avocado/pull/3

[Avocado-devel] Implement skip class decorator

2020-05-04 Thread Jan Richter
Hello everyone, some time ago was added the ability for avocado.skip decorators to be used on classes. This decorator just loop over all the methods of the class and marks them as skip https://github.com/avocado-framework/avocado/pull/3570 However, this implementation comes a question if this is en