Re: [U-Boot] [PATCH 1/1] test/py: pytest.mark.notbuildconfigspec()

2019-04-24 Thread Stephen Warren
On 4/22/19 1:44 AM, Heinrich Schuchardt wrote: We already can let a Python test depend on a build option being set via @pytest.mark.buildconfigspec(). It may be necessary to let a test depend on a build option *not* being set. So let's introduce @pytest.mark.notbuildconfigspec for this

Re: [U-Boot] [PATCH 1/1] test/py: pytest.mark.notbuildconfigspec()

2019-04-24 Thread Tom Rini
On Mon, Apr 22, 2019 at 09:44:29AM +0200, Heinrich Schuchardt wrote: > We already can let a Python test depend on a build option being set via > @pytest.mark.buildconfigspec(). It may be necessary to let a test depend on > a build option *not* being set. So let's introduce > >

[U-Boot] [PATCH 1/1] test/py: pytest.mark.notbuildconfigspec()

2019-04-22 Thread Heinrich Schuchardt
We already can let a Python test depend on a build option being set via @pytest.mark.buildconfigspec(). It may be necessary to let a test depend on a build option *not* being set. So let's introduce @pytest.mark.notbuildconfigspec for this purpose. Signed-off-by: Heinrich Schuchardt ---