Re: electrum: How to enable autopkgtest?

2024-10-30 Thread Antonio Terceiro
On Tue, Oct 29, 2024 at 01:43:50PM -0700, Soren Stoutner wrote: > I recently requested the upstream maintainers add the tests directory to > their > signed tarball releases. I am now in the process of trying to enable those > tests in the Debian package. > > I added a Build-Depend on "python3-

Re: electrum: How to enable autopkgtest?

2024-10-30 Thread Soren Stoutner
On Wednesday, October 30, 2024 12:16:33 AM MST Andrey Rakhmatullin wrote: > On Wed, Oct 30, 2024 at 12:06:32AM -0700, Soren Stoutner wrote: > > If I disable it in debian/rules using the following command the test no > > longer runs during build. > > > > export PYBUILD_TEST_ARGS=-k 'not test_qml_ty

Re: electrum: How to enable autopkgtest?

2024-10-30 Thread Soren Stoutner
On Tuesday, October 29, 2024 11:11:44 PM MST Soren Stoutner wrote: > > > My question is, what is the canonical way to handle this? > > > > Fixing the package so that it provides that module or patching the tests > > so that they don't require it. > > The tests run successfully during build. > >

Re: electrum: How to enable autopkgtest?

2024-10-30 Thread Andrey Rakhmatullin
On Wed, Oct 30, 2024 at 12:28:27AM -0700, Soren Stoutner wrote: > > > If I disable it in debian/rules using the following command the test no > > > longer runs during build. > > > > > > export PYBUILD_TEST_ARGS=-k 'not test_qml_types.py’ > > > > The correct way is --ignore tests/test_qml_types.py

Re: electrum: How to enable autopkgtest?

2024-10-30 Thread Andrey Rakhmatullin
On Wed, Oct 30, 2024 at 12:06:32AM -0700, Soren Stoutner wrote: > If I disable it in debian/rules using the following command the test no > longer > runs during build. > > export PYBUILD_TEST_ARGS=-k 'not test_qml_types.py’ The correct way is --ignore tests/test_qml_types.py -- WBR, wRAR