aboutsummaryrefslogtreecommitdiff
path: root/absl/flags/tests
AgeCommit message (Expand)Author
2022-09-20Add a flags.set_default function.Abseil Team
2022-09-13Support FlagHolders in flag module-level functions.Abseil Team
2022-09-09Remove Python 2 compat code.Abseil Team
2022-06-08Remove the unnecessary Python 2 related future imports.Yilei Yang
2022-03-22Remove the use of third party `mock` package and future imports in these tests.Yilei Yang
2022-02-22Enumerate possible values in multi_enum flag help.Abseil Team
2022-02-08Prevent the truthiness of absl.flags Flag instances from being tested in a bo...Gregory P. Smith
2022-01-24Remove PY2-ism in absl's own unit tests.Yilei Yang
2022-01-20Merge changes from github.Yilei Yang
2021-10-25Drop the support of Python 2.7, 3.4, and 3.5. All versions have reached end-o...Yilei Yang
2021-07-26absl: Expose the `.present` property from `Flag` on `FlagHolder`Abseil Team
2021-07-19Fix #171: add an ignored `default=` argument to our custom actions.Yilei Yang
2021-04-30Shows all missing required flags in error message, instead of just the first ...Abseil Team
2021-03-04Expose the --test_tmpdir and --test_srcdir flags as public flag holders.Yilei Yang
2021-02-26Add EnumClassListSerializer to the public namespaceAbseil Team
2021-02-12Fix CsvListSerializer to honor its list_sep parameter.Abseil Team
2020-12-23Add a required argument to DEFINE_* methods.Abseil Team
2020-10-22Surface inappropriate usage of a `FlagHolder` object as a runtime errorMatt McDonald
2020-09-30In flagsaver, set multiple flags together before their validators run.Karol M. Langner
2020-08-03Make `DEFINE_enum_class` values case-insensitive by default.Abseil Team
2020-04-28Create --pdb as an alias of --pdb_post_mortemRichard Levasseur
2020-04-27Add get_flags_for_module accessor.Richard Levasseur
2020-04-22Fix aliases from marking the aliased flag as present when the alias is defined.Richard Levasseur
2020-04-20Adds more tests to verify existing alias behaviors.Richard Levasseur
2020-04-08Add logger level control flag, take 2.Richard Levasseur
2020-04-07Add support for multi-flags to flag_dict_to_args helper.Abseil Team
2020-04-06Revert adding of --logger_level flag due to internal test failuresAbseil Team
2020-04-06Add logger level control flag.Richard Levasseur
2020-02-24Define and use py2 and py3 version of the test helper binaries, instead of al...Yilei Yang
2020-02-20Remove the FlagHolder.non_none_value method for now, we might use a different...Yilei Yang
2020-02-12DEFINE_* methods now return a FlagHolder instance and encourages coding patte...Abseil Team
2020-01-30FlagValues: Add method to validate all flagsAbseil Team
2019-11-12Update absl.testing's --test_randomize_ordering_seed flag default value from ...Abseil Team
2019-07-16Make non-None flag tests assert warnings after capturing is finished.Richard Levasseur
2019-04-11Make absl tests pass under new Bazel Python version transition logic.Richard Levasseur
2019-03-27Internal changeAbseil Team
2019-03-21Add explicit tests for octal flags.Abseil Team
2019-02-06Add a mark_bool_flags_as_mutual_exclusive convenience functionKarol M. Langner
2019-01-09Change "should be specified" errors to "value other than None"Abseil Team
2018-12-19Allow defining multi fields with any Iterable, not just lists.Siavash Khodadadeh
2018-12-06Add multi enum class flag to absl.flags.Petros Maniatis
2018-11-26Make flags_into_string deterministic.Richard Levasseur
2018-11-22Allow Enum class flags to correctly round-trip through serialize and parseAbseil Team
2018-11-20Raise an error when pickling or copying FlagValues() (fixed version)Abseil Team
2018-10-23Use Py3 assertRegex names in absl tests.Richard Levasseur
2018-09-20Automated g4 rollback of changelist 213728792Abseil Team
2018-09-19Raise an error when pickling or copying FlagValues()Abseil Team
2018-09-10Allow enum.Enum classes to be used directly with flags.Richard Levasseur
2018-08-15Add validation to flag names checking no space is in the name. Also adds test...Abseil Team
2018-08-13Make absl flags integrate with argparse.Richard Levasseur