%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 - 4.1.0-1 - Package Spec generated