Re: [PATCH 15/17] pytest: Collect SPL unit tests

2020-10-26 Thread Simon Glass
Hi Stephen, On Mon, 26 Oct 2020 at 09:34, Stephen Warren wrote: > > On 10/23/20 1:27 PM, Simon Glass wrote: > > Hi Stephen, > > > > On Mon, 5 Oct 2020 at 15:35, Stephen Warren wrote: > >> > >> On 10/5/20 1:51 PM, Simon Glass wrote: > >>> Hi Stephen, > >>> > >>> On Mon, 5 Oct 2020 at 13:39, Steph

Re: [PATCH 15/17] pytest: Collect SPL unit tests

2020-10-26 Thread Stephen Warren
On 10/23/20 1:27 PM, Simon Glass wrote: > Hi Stephen, > > On Mon, 5 Oct 2020 at 15:35, Stephen Warren wrote: >> >> On 10/5/20 1:51 PM, Simon Glass wrote: >>> Hi Stephen, >>> >>> On Mon, 5 Oct 2020 at 13:39, Stephen Warren wrote: On 10/3/20 9:25 AM, Simon Glass wrote: > Add a new te

Re: [PATCH 15/17] pytest: Collect SPL unit tests

2020-10-23 Thread Simon Glass
Hi Stephen, On Mon, 5 Oct 2020 at 15:35, Stephen Warren wrote: > > On 10/5/20 1:51 PM, Simon Glass wrote: > > Hi Stephen, > > > > On Mon, 5 Oct 2020 at 13:39, Stephen Warren wrote: > >> > >> On 10/3/20 9:25 AM, Simon Glass wrote: > >>> Add a new test_spl fixture to handle running SPL unit tests.

Re: [PATCH 15/17] pytest: Collect SPL unit tests

2020-10-05 Thread Stephen Warren
On 10/5/20 1:51 PM, Simon Glass wrote: > Hi Stephen, > > On Mon, 5 Oct 2020 at 13:39, Stephen Warren wrote: >> >> On 10/3/20 9:25 AM, Simon Glass wrote: >>> Add a new test_spl fixture to handle running SPL unit tests. >> >>> diff --git a/test/py/conftest.py b/test/py/conftest.py >> >>> @@ -317,10

Re: [PATCH 15/17] pytest: Collect SPL unit tests

2020-10-05 Thread Simon Glass
Hi Stephen, On Mon, 5 Oct 2020 at 13:39, Stephen Warren wrote: > > On 10/3/20 9:25 AM, Simon Glass wrote: > > Add a new test_spl fixture to handle running SPL unit tests. > > > diff --git a/test/py/conftest.py b/test/py/conftest.py > > > @@ -317,10 +318,13 @@ def pytest_generate_tests(metafunc):

Re: [PATCH 15/17] pytest: Collect SPL unit tests

2020-10-05 Thread Stephen Warren
On 10/3/20 9:25 AM, Simon Glass wrote: > Add a new test_spl fixture to handle running SPL unit tests. > diff --git a/test/py/conftest.py b/test/py/conftest.py > @@ -317,10 +318,13 @@ def pytest_generate_tests(metafunc): > Returns: > Nothing. > """ > - > +#print('name', meta

[PATCH 15/17] pytest: Collect SPL unit tests

2020-10-03 Thread Simon Glass
Add a new test_spl fixture to handle running SPL unit tests. Signed-off-by: Simon Glass --- test/py/conftest.py | 14 +- test/py/tests/test_spl.py | 29 + 2 files changed, 38 insertions(+), 5 deletions(-) create mode 100644 test/py/tests/test_spl.p