Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate treegen module and adapt it #371

Merged
merged 2 commits into from
Jun 20, 2024

Commits on Jun 19, 2024

  1. Introduce preloaded hooks

    Preloaded hooks extend base hooks. They behave like the pytest fixture
    with the `autouse` parameter. This is useful when writing a module and
    using it with "auto" before/after hooks.
    
    The following functions have been "preloaded" into `hooks.lua` module:
      - before_suite_preloaded(func)
      - after_suite_preloaded(func)
      - before_all_preloaded(func)
      - after_all_preloaded(func)
      - before_each_preloaded(func)
      - after_each_preloaded(func)
    
    Close tarantool#380
    Oleg Chaplashkin committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    d588403 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Migrate treegen module and adapt it

    The original `treegen` module (path: tarantool/test/treegen.lua) has
    been moved to the current project with the following changes:
        - refactoring;
        - updated documentation.
    
    Closes tarantool#364
    Oleg Chaplashkin committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    16c261d View commit details
    Browse the repository at this point in the history