Accepting request 1203878 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/1203878
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-debugpy?expand=0&rev=18
This commit is contained in:
Ana Guerrero 2024-09-29 16:09:06 +00:00 committed by Git OBS Bridge
commit ab10f414e4
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Sep 26 10:32:41 UTC 2024 - Markéta Machová <mmachova@suse.com>
- Drop unneeded Django test dependency
- Skip one failing test on aarch64
-------------------------------------------------------------------
Sat Jun 29 19:34:29 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@ -40,7 +40,6 @@ BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: python-rpm-macros
%if %{with test}
BuildRequires: %{python_module Django}
BuildRequires: %{python_module Flask}
BuildRequires: %{python_module debugpy = %{version}}
BuildRequires: %{python_module gevent}
@ -126,6 +125,10 @@ donttest="$donttest or test_attach_pid_client"
sed -i "s/timeout=30/timeout=60/g" pytest.ini
donttest+=" or test_attach_api or test_reattach or test_break_api or test_set_variable or test_unicode or test_debugpySystemInfo or test_debug_this_thread or test_tracing"
%endif
# Attach-to-PID is not supported on ARM https://github.com/microsoft/debugpy/issues/1220
%ifarch aarch64
donttest+=" or test_reattach"
%endif
# Do not have numpy dependency
donttest+=" or test_numpy"