diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-11 14:52:04 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 14:52:04 +0000 |
commit | 6ed8e52bdf308f78cdf38ba03f7b76bf37752e7d (patch) | |
tree | 8b5aeec0150ec130491af7c488ba560aaf285180 | |
parent | a062bc9ceb80e1a77568f6a3c6665925a522e692 (diff) |
automatic import of python-cucumber-tag-expressions
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-cucumber-tag-expressions.spec | 132 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 134 insertions, 0 deletions
@@ -0,0 +1 @@ +/cucumber-tag-expressions-4.1.0.tar.gz diff --git a/python-cucumber-tag-expressions.spec b/python-cucumber-tag-expressions.spec new file mode 100644 index 0000000..9b40637 --- /dev/null +++ b/python-cucumber-tag-expressions.spec @@ -0,0 +1,132 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cucumber-tag-expressions +Version: 4.1.0 +Release: 1 +Summary: Provides tag-expression parser for cucumber/behave +License: MIT +URL: https://github.com/cucumber/tag-expressions-python +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/88/0f/980a044d0592a49460199b117880de1cbbb8e46d9c385c772bf87aa537ef/cucumber-tag-expressions-4.1.0.tar.gz +BuildArch: noarch + + +%description +A cucumber test runner selects some scenarios by using tag-expressions and runs them: + # -- TAG-EXPRESSION: @one and @two + # EXPECTED: Selects and runs scenario "Three". + $ my_cucumber_test_runner --tags="@one and @two" features/example.feature + # -- TAG-EXPRESSION: @one or @two + # EXPECTED: Selects and runs scenarios "One", "Two" and "Three". + $ my_cucumber_test_runner --tags="@one or @two" features/example.feature +by using the following feature file: + # -- FILE: features/example.feature + Feature: Tag-Expressions Example + @one + Scenario: One + Given a step passes + @two + Scenario: Two + Given another step passes + @one @two + Scenario: Three + Given some step passes + Scenario: Four + Given another step passes + +%package -n python3-cucumber-tag-expressions +Summary: Provides tag-expression parser for cucumber/behave +Provides: python-cucumber-tag-expressions +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-cucumber-tag-expressions +A cucumber test runner selects some scenarios by using tag-expressions and runs them: + # -- TAG-EXPRESSION: @one and @two + # EXPECTED: Selects and runs scenario "Three". + $ my_cucumber_test_runner --tags="@one and @two" features/example.feature + # -- TAG-EXPRESSION: @one or @two + # EXPECTED: Selects and runs scenarios "One", "Two" and "Three". + $ my_cucumber_test_runner --tags="@one or @two" features/example.feature +by using the following feature file: + # -- FILE: features/example.feature + Feature: Tag-Expressions Example + @one + Scenario: One + Given a step passes + @two + Scenario: Two + Given another step passes + @one @two + Scenario: Three + Given some step passes + Scenario: Four + Given another step passes + +%package help +Summary: Development documents and examples for cucumber-tag-expressions +Provides: python3-cucumber-tag-expressions-doc +%description help +A cucumber test runner selects some scenarios by using tag-expressions and runs them: + # -- TAG-EXPRESSION: @one and @two + # EXPECTED: Selects and runs scenario "Three". + $ my_cucumber_test_runner --tags="@one and @two" features/example.feature + # -- TAG-EXPRESSION: @one or @two + # EXPECTED: Selects and runs scenarios "One", "Two" and "Three". + $ my_cucumber_test_runner --tags="@one or @two" features/example.feature +by using the following feature file: + # -- FILE: features/example.feature + Feature: Tag-Expressions Example + @one + Scenario: One + Given a step passes + @two + Scenario: Two + Given another step passes + @one @two + Scenario: Three + Given some step passes + Scenario: Four + Given another step passes + +%prep +%autosetup -n cucumber-tag-expressions-4.1.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-cucumber-tag-expressions -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 4.1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +464a3303f6019a4a7e8ebc3bab55e8e5 cucumber-tag-expressions-4.1.0.tar.gz |