On 10/30/21 8:43 PM, Andrey Rahmatullin wrote:
> On Sat, Oct 30, 2021 at 02:20:40PM +0200, Ole Streicher wrote:
>> I have a package (pyraf) where I need to switch off some tests for i386
>> (but not for other 32-bit platforms). I do this by
>>
>> import platform
>> is_i386 = platform.machine() in (
Hi Nilesh, Andrey,
Nilesh Patra writes:
> On 10/30/21 5:50 PM, Ole Streicher wrote:
>> Hi,
>> https://salsa.debian.org/debian-astro-team/pyraf/-/jobs/2130878#L2062
>> How can one find out the correct machine here?
>
> I just committed something to salsa -- sort of a hack, but it works
> (i386 pip
Hi Michael!
On Thu, Oct 21, 2021 at 08:55:51PM +0200, Michael Fladischer wrote:
> Hi,
>
> I'm working on src:pytest-lazy-fixtures and was trying to get the unittests
> to run but it seems that I have run into a problem that I'm not sure on how
> to fix it in a clean way.
>
> pytest-lazy-fixtures i
Hi Ole (2021.10.30_12:20:40_+)
> How can one find out the correct machine here?
sys.implementation._multiarch will return the Debian multiarch tuple
that python was built for.
SR
--
Stefano Rivera
http://tumbleweed.org.za/
+1 415 683 3272
Hi Ole,
On 10/30/21 5:50 PM, Ole Streicher wrote:
Hi,
https://salsa.debian.org/debian-astro-team/pyraf/-/jobs/2130878#L2062
How can one find out the correct machine here?
I just committed something to salsa -- sort of a hack, but it works (i386
pipeline passes). I do this
for one of my other
On Sat, Oct 30, 2021 at 02:20:40PM +0200, Ole Streicher wrote:
> I have a package (pyraf) where I need to switch off some tests for i386
> (but not for other 32-bit platforms). I do this by
>
> import platform
> is_i386 = platform.machine() in ('i386', 'i486', 'i586', 'i686')
Yup, this is incorrec
Hi,
I have a package (pyraf) where I need to switch off some tests for i386
(but not for other 32-bit platforms). I do this by
import platform
is_i386 = platform.machine() in ('i386', 'i486', 'i586', 'i686')
[...]
@pytest.mark.skipif(is_i386, reason='diff is not identical on i386')
def test_gki
7 matches
Mail list logo