Skip to content

v0.11.0

Compare
Choose a tag to compare
@wcchang1115 wcchang1115 released this 20 Oct 04:17
· 1488 commits to main since this release
14b7c50

What's new in PipeRider v0.11.0

Released on 10-20-2022

PipeRider version 0.11.0 is out now! Major updates for the assertion feature: tests for profiling metrics and a dedicated test result page

⭐ Test on profiling metrics

You can now set expectations for your calculated column metrics (e.g. negative value count, missing count, median)

  • You can give use an exact value
  • Or give a percentage
world_city:
  columns:
    country_code:
      tests:
      # missing percentage <= 1%
      - metrics: nulls_p
        assert:
          lte: 0.01

🔃 Updated: Asserting column value range

assert_column_max_in_range and assert_column_min_in_range is now assert_column_value

Setting a test for a certain column range will be done in the following way:

world_city:
  columns:
    population:
      tests:
      - name: assert_column_value
        assert:
            gte: 0
            le: 10000

⚡ Quickly check your test results

You can now check your test results in a dedicated page in your reports

Get in touch ❤️

We'd love your feedback! Send us a message via Intercom on piperider.io, join our Discord, report an issue on GitHub, or send us a good old-fashioned email


All changes

Full Changelog: v0.10.0...v0.11.0