Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

bats-1.8.2-bp155.1.5 RPM for noarch

From OpenSuSE Leap 15.5 for noarch

Name: bats Distribution: SUSE Linux Enterprise 15 SP5
Version: 1.8.2 Vendor: openSUSE
Release: bp155.1.5 Build date: Wed May 17 15:36:11 2023
Group: Development/Tools/Other Build host: stones
Size: 126777 Source RPM: bats-1.8.2-bp155.1.5.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/bats-core/bats-core/
Summary: Bash Automated Testing System
Bats is a TAP-compliant (http://testanything.org/) testing framework for Bash.
It provides a simple and repeatable way to verify that the UNIX programs you
write behave as expected.

A Bats test file is a Bash script with special syntax for defining test cases.
Under the hood, each test case is just a function with a description.

Bats is most useful when testing software written in Bash, but you can use it
to test any UNIX program.

Provides

Requires

License

MIT

Changelog

* Tue Nov 08 2022 Andrea Manzini <andrea.manzini@suse.com>
  - Update to version 1.8.2:
    * fix non zero return code on successful retried tests
    * avoid kernel warning flood/hang with CTRL+C on Bash 5.2 RC
    * Fix infinite wait with (invalid) -j<n> (without space)
    * using external formatters via --formatter <absolute path> (also works for --report-formatter)
    * running only tests that failed in the last run via --filter-status failed
    * variable BATS_TEST_RETRIES that specifies how often a test should be reattempted before it is considered failed
    * BATS_TEST_TIMEOUT variable to force a timeout on test (including setup())
    * test_tags=<tag list>/# bats file_tags=<tag list> and --filter-tags <tag list> for tagging tests
    * add documentation for bats_require_minimum_version, setup_suite, fix typos
    * improve documentation about setup_suite
    * allow --gather-test-outputs-in <directory> to work with existing, empty directories
    * fix load in teardown marking failed tests as not run
    * add /usr/lib/bats as default value for BATS_LIB_PATH
    * fix unset variable in bats-formatter-junit when setup_file fails
    * unify error behavior of teardown/teardown_file/teardown_suite functions: only fail via return code, not via ERREXIT
    * only print setup_suite's stderr on errors
* Wed Jun 15 2022 Olav Reinert <seroton10@gmail.com>
  - Update to version 1.7.0:
    * Pretty formatter print filename when entering file (#561)
    * BATS_TEST_NAME_PREFIX allows prefixing test names on stdout and in reports (#561)
    * setup_suite and teardown_suite (#571, #585)
    * out-of-band warning infrastructure, with following warnings:
    * BW01: run command not found (exit code 127)  (#586)
    * BW02: run uses flags without proper `bats_require_minimum_version` guard (#587)
    * `bats_require_minimum_version` to guard code that would not run on older
      versions (#587)
    * unbound variable errors in formatters when using `SHELLOPTS=nounset` (`-u`) (#558)
    * don't require `flock` *and* `shlock` for parallel mode test (#554)
    * print name of failing test when using TAP13 with timing information (#559, #555)
    * removed broken symlink, added regression test (#560)
    * don't show empty lines as `#` with pretty formatter  (#561)
    * prevent `teardown`, `teardown_file`, and `teardown_suite` from overriding bats'
      exit code by setting `$status` (e.g. via calling `run`) (#581, #575)
    * **CRITICAL**: this can return exit code 0 despite failed tests, thus preventing
      your CI from reporting test failures! The regression happened in version 1.6.0.
    * `run --keep-empty-lines` now reports 0 lines on empty `$output` (#583)
* Wed Jun 08 2022 Olav Reinert <seroton10@gmail.com>
  - Update to version 1.6.1:
    * prevent teardown, teardown_file, and teardown_suite from overriding bats'
      exit code by setting $status (e.g. via calling run) (#581, #575)
    - CRITICAL: this can return exit code 0 despite failed tests, thus
      preventing your CI from reporting test failures! The regression happened
      in version 1.6.0.
    * corrected invalid documentation of run -N (had =N instead) (#579)
    - CRITICAL: using the incorrect form can lead to silent errors. See issue
      [#578] for more details and how to find out if your tests are affected.
* Mon Apr 18 2022 Ferdinand Thiessen <rpm@fthiessen.de>
  - Update to version 1.6.0
    * Added: New flag --code-quote-style (and $BATS_CODE_QUOTE_STYLE)
      to customize quotes around code blocks in error output
    * Added: bats_load_library for loading libraries from the search
      path $BATS_LIB_PATH
    * Improved error trace for some broken cases
    * Fixed leaking of local variables from debug trap
    * Don't mark FD3 output from teardown_file as <failure> in junit
      output
    * Fix unbound variable error with Bash pre 4.4
* Sat Dec 11 2021 Olav Reinert <seroton10@gmail.com>
  - boo#1193177: Fix build on Leap and SLE
* Wed Nov 24 2021 Dirk Müller <dmueller@suse.com>
  - update to 1.5.0:
    * new command line flags
    * `--verbose-run`: Make `run` print `$output` by default
    * `-x`, `--trace`: Print test commands as they are executed (like `set -x`)`
    * `--show-output-of-passing-tests`: Print output of passing tests
    * `--print-output-on-failure`: Automatically print the value of  `$output` on
      failed tests
    * `--gather-test-outputs-in <directory>`: Gather the output of failing **and**
      passing tests as files in directory
    * Experimental: add return code checks to `run` via `!`/`-<N>`
    * `install.sh` and `uninstall.sh` take an optional second parameter for the lib
      folder name to allow for multilib install, e.g. into lib64
    * add `run` flag `--keep-empty-lines` to retain empty lines in `${lines[@]}`
    * add `run` flag `--separate-stderr` which also fills `$stderr` and
      `$stderr_lines`
    * don't glob `run`'s `$output` when splitting into `${lines[@]}`
    * remove empty line after test with pretty formatter on some terminals
    * don't run setup_file/teardown_file on files without tests, e.g. due to
      filtering
    * print final line without newline on Bash 3.2 for midtest (ERREXIT) failures
    * abort with error on missing flock/shlock when running in parallel mode
    * improved `set -u` test and fixed some unset variable accesses
    * shorten suite/file/test temporary folder paths to leave enough space even on
      restricted systems
    * added BATS_TEST_TMPDIR, BATS_FILE_TMPDIR, BATS_SUITE_TMPDIR
    * added checks and improved documentation for `$BATS_TMPDIR`
    * the docker container now uses [tini](https://github.com/krallin/tini) as the
      container entrypoint to improve signal forwarding
    * script to uninstall bats from a given prefix
    * replace preprocessed file path (e.g. `/tmp/bats-run-22908-NP0f9h/bats.23102.src`)
      with original filename in stdout/err (but not FD3!)
    * print aborted command on SIGINT/CTRL+C
    * print error message when BATS_RUN_TMPDIR could not be created
* Sun Apr 18 2021 Ferdinand Thiessen <rpm@fthiessen.de>
  - Update to 1.3.0
    * Added custom test-file extension via BATS_FILE_EXTENSION when
      searching for test files in a directory
    * Added TAP13 formatter, including millisecond timing
    * Recursive suite mode will follow symlinks now
    * Split options for (file-) --report-formatter and (stdout)
    - -formatter
      WARNING: This changes the meaning of --formatter junit.
      stdout will now show unified xml instead of TAP. From now on,
      please use --report-formatter junit to obtain the .xml report file!
    * Removed --parallel-preserve-environment flag, as this is the default
    * Preprocessed files are no longer removed if --no-tempdir-cleanup
      is specified
    * Fix internal failures due to unbound variables when test files
      use set -u
    * Fix internal failures due to changes to $PATH in test files
    * Fix hangs on CTRL+C
    * Make BATS_TEST_NUMBER count per file again
    * Performance improvements
    * Improved documentation
  - Dropped upstream merged
    bsc1180135-0001-fix-dont-use-unbound-variables-in-setup-methods.patch
* Thu Dec 17 2020 Aleksa Sarai <asarai@suse.com>
  - Backport <https://github.com/bats-core/bats-core/pull/344>. bsc#1180135
    + bsc1180135-0001-fix-dont-use-unbound-variables-in-setup-methods.patch
* Wed Nov 18 2020 Olav Reinert <seroton10@gmail.com>
  - update to 1.2.1:
    * added:
    - JUnit output and extensible formatter rewrite (#246)
    - load function now reads from absolute and relative paths, and $PATH (#282)
    - Beginner-friendly examples in /docs/examples (#243)
    - @peshay's bats-file fork contributed to bats-core/bats-file (#276)
    * changed:
    - Duplicate test names now error (previous behaviour was to issue a warning) (#286)
    - Changed default formatter in Docker to pretty by adding ncurses to Dockerfile, override with --tap (#239)
    - Replace "readlink -f" dependency with Bash solution (#217)
* Wed Nov 18 2020 Olav Reinert <seroton10@gmail.com>
  - Install to /usr/libexec on Tumbleweed
* Fri Jul 03 2020 Aleksa Sarai <asarai@suse.com>
  - Require gnu_parallel so that 'bats --jobs' works out of the box and is tested
    as part of the integration tests of the package.
* Wed May 20 2020 Olav Reinert <seroton10@gmail.com>
  - update to 1.2.0:
    * Added:
    - docs/CHANGELOG.md and docs/releasing.md (#122)
    - The -f, --filter flag to run only the tests matching a regular expression (#126)
    - Optimize stack trace capture (#138)
    - --jobs n flag to support parallel execution of tests with GNU parallel (#172)
    * Changed:
    - AppVeyor builds are now semver-compliant (#123)
    - Add Bash 5 as test target (#181)
    - Always use upper case signal names to avoid locale dependent err… (#215)
    - Fix for tests reading from stdin (#227)
    - Fix wrong line numbers of errors in bash < 4.4 (#229)
    - Remove preprocessed source after test run (#232)
* Fri Oct 25 2019 Olav Reinert <seroton10@gmail.com>
  - Reinstate prematurely removed Group tag
* Thu Oct 17 2019 Richard Brown <rbrown@suse.com>
  - Remove obsolete Groups tag (fate#326485)
* Tue Jan 22 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 1.1.0
  - drop build-term.patch  package-json.patch
  - new upstream, see changes on https://github.com/bats-core/bats-core/releases
* Sat Feb 25 2017 seroton10@gmail.com
  - Added build-term.patch: work-around for bnc#1026350
* Tue Feb 24 2015 seroton10@gmail.com
  - Fix RPM group
* Sun Feb 22 2015 seroton10@gmail.com
  - Spec file improvements:
    * Run tests in %check section
    * Correct project URL
* Wed Feb 18 2015 seroton10@gmail.com
  - Spec file improvements:
    * /usr/bin/tput is optional at runtime
    * Reference to meaning of TAP-compliant
    * Simplify launch of tests
* Mon Feb 16 2015 seroton10@gmail.com
  - Initial version: bats 0.4.0

Files

/usr/bin/bats
/usr/lib/bats-core
/usr/lib/bats-core/bats
/usr/lib/bats-core/bats-exec-file
/usr/lib/bats-core/bats-exec-suite
/usr/lib/bats-core/bats-exec-test
/usr/lib/bats-core/bats-format-cat
/usr/lib/bats-core/bats-format-junit
/usr/lib/bats-core/bats-format-pretty
/usr/lib/bats-core/bats-format-tap
/usr/lib/bats-core/bats-format-tap13
/usr/lib/bats-core/bats-preprocess
/usr/lib/bats-core/common.bash
/usr/lib/bats-core/formatter.bash
/usr/lib/bats-core/preprocessing.bash
/usr/lib/bats-core/semaphore.bash
/usr/lib/bats-core/test_functions.bash
/usr/lib/bats-core/tracing.bash
/usr/lib/bats-core/validator.bash
/usr/lib/bats-core/warnings.bash
/usr/share/doc/packages/bats
/usr/share/doc/packages/bats/README.md
/usr/share/licenses/bats
/usr/share/licenses/bats/LICENSE.md
/usr/share/man/man1/bats.1.gz
/usr/share/man/man7/bats.7.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 19:57:54 2024