From 1e61fe214cf60c181a9d398ec8cc9c4927a0b978f791993c637e1957fc49043d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 3 May 2024 22:25:27 +0200 Subject: [PATCH] Sync from SUSE:SLFO:Main python-pytest-jupyter revision ca32486a5aca023007a3a7070e784308 --- .gitattributes | 23 ++++++++ _multibuild | 3 + pytest_jupyter-0.7.0.tar.gz | 3 + python-pytest-jupyter.changes | 17 ++++++ python-pytest-jupyter.spec | 108 ++++++++++++++++++++++++++++++++++ 5 files changed, 154 insertions(+) create mode 100644 .gitattributes create mode 100644 _multibuild create mode 100644 pytest_jupyter-0.7.0.tar.gz create mode 100644 python-pytest-jupyter.changes create mode 100644 python-pytest-jupyter.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/_multibuild b/_multibuild new file mode 100644 index 0000000..ec2fdbb --- /dev/null +++ b/_multibuild @@ -0,0 +1,3 @@ + + test + \ No newline at end of file diff --git a/pytest_jupyter-0.7.0.tar.gz b/pytest_jupyter-0.7.0.tar.gz new file mode 100644 index 0000000..50b8e73 --- /dev/null +++ b/pytest_jupyter-0.7.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6403b7f6f5eaaa5a9faffd73d2ff1097106a7dc5c3204292212487fc9fb71843 +size 15507 diff --git a/python-pytest-jupyter.changes b/python-pytest-jupyter.changes new file mode 100644 index 0000000..e11f8b9 --- /dev/null +++ b/python-pytest-jupyter.changes @@ -0,0 +1,17 @@ +------------------------------------------------------------------- +Sun Apr 23 17:24:28 UTC 2023 - Ben Greiner + +- Update to 0.7.0 + * Enable header overrides in jp_ws_fetch fixture by @kevin-bates + in #51 + +------------------------------------------------------------------- +Thu Dec 29 22:30:34 UTC 2022 - Ben Greiner + +- Apply spec-cleaner and package README + +------------------------------------------------------------------- +Sun Dec 25 21:36:22 UTC 2022 - Ben Greiner + +- Initial specfile for v0.6.2 +- Required to test jupyter-server 2 diff --git a/python-pytest-jupyter.spec b/python-pytest-jupyter.spec new file mode 100644 index 0000000..37dc154 --- /dev/null +++ b/python-pytest-jupyter.spec @@ -0,0 +1,108 @@ +# +# spec file +# +# Copyright (c) 2023 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%global flavor @BUILD_FLAVOR@%{nil} +%if "%{flavor}" == "test" +%define psuffix -test +%bcond_without test +%else +%define psuffix %{nil} +%bcond_with test +%endif + +Name: python-pytest-jupyter%{psuffix} +Version: 0.7.0 +Release: 0 +Summary: A pytest plugin for testing Jupyter libraries and extensions +License: BSD-3-Clause AND MIT +URL: https://github.com/jupyter-server/pytest-jupyter +Source: https://files.pythonhosted.org/packages/source/p/pytest_jupyter/pytest_jupyter-%{version}.tar.gz +BuildRequires: %{python_module base >= 3.7} +BuildRequires: %{python_module hatchling} +BuildRequires: %{python_module pip} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-jupyter_core +Requires: python-pytest +BuildArch: noarch +%if %{with test} +BuildRequires: %{python_module nbformat} +BuildRequires: %{python_module pytest-jupyter = %{version}} +BuildRequires: %{python_module pytest-jupyter-client = %{version}} +BuildRequires: %{python_module pytest-jupyter-server = %{version}} +BuildRequires: %{python_module pytest-timeout} +%endif +%python_subpackages + +%description +A pytest plugin for testing Jupyter libraries and extensions. + +%package client +Summary: A pytest plugin for testing Jupyter libraries and extensions [client] extra +Requires: python-ipykernel +Requires: python-jupyter_client >= 7.4 +Requires: python-pytest-jupyter = %{version} + +%description client +A pytest plugin for testing Jupyter libraries and extensions. +This subpackage provides the [client] extra dependencies + +%package server +Summary: A pytest plugin for testing Jupyter libraries and extensions [server] extra +Requires: python-jupyter-server >= 1.21 +Requires: python-nbformat >= 5.3 +Requires: python-pytest-jupyter = %{version} +Requires: python-pytest-jupyter-client = %{version} + +%description server +A pytest plugin for testing Jupyter libraries and extensions. +This subpackage provides the [server] extra dependencies + +%prep +%setup -q -n pytest_jupyter-%{version} +sed -i 's/--color=yes//' pyproject.toml + +%if !%{with test} +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} +%endif + +%if %{with test} +%check +%pytest +%endif + +%if !%{with test} +%files %{python_files} +%license LICENSE +%doc README.md +%{python_sitelib}/pytest_jupyter +%{python_sitelib}/pytest_jupyter-%{version}.dist-info + +%files %{python_files client} +%license LICENSE + +%files %{python_files server} +%license LICENSE +%endif + +%changelog