Skip to content

0.2.0

Choose a tag to compare

@github-actions github-actions released this 06 Apr 11:48
· 29 commits to main since this release
a6d2f19

Version 0.2.0

Changelog

  • Added convenient target to print bashtest help bazel run //bashtest:bashtest_help which can be used with |pandoc -s -t man|man -l -.
  • Fixed description for flag '--test_filter'.
  • Added '--gtest_filter' which is an actual glob based filter (as opposed to '--test_filter' which uses posix regular expressions).
  • Correct support for space separated flag values.

For Bazel MODULES.bazel

bazel_dep(name = "helly25_bashtest", version = "0.2.0")

For Bazel WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
  name = "com_helly25_bashtest",
  url = "https://github.com/helly25/bashtest/releases/download/0.2.0/bashtest-0.2.0.tar.gz",
  sha256 = "666d58320cb7e429fa21c774b3f308776280c1b1cae1f28694df4598a698bcb1",
  strip_prefix = "bashtest-0.2.0",
)

Initializing the required modules

The project depends on some additional external repositories that can be added
manually of by calling the support functions in the user' WORKSPACE file:

load("@com_helly25_bashtest//bzl/workspace:load_modules.bzl", "helly25_bashtest_load_modules")

helly25_bashtest_load_modules()

load("@com_helly25_bashtest//bzl/workspace:init_modules.bzl", "helly25_bashtest_init_modules")

helly25_bashtest_init_modules()

What's Changed

  • Bump version from 0.1.0 to 0.1.1 by @helly25 in #8
  • Added convenient target to print bashtest help by @helly25 in #9
  • Bump version due to new feature. by @helly25 in #10

Full Changelog: 0.1.0...0.2.0