Running Tests
Running Your Tests
Choose a Baseline Run
Create a Test Session

import dbnl
import pandas as pd
dbnl.login()
# More likely, you will use the run reference returned by
# report_run_with_results. See the "Reporting Runs" section in the
# docs (linked above) for more information.
run = dbnl.get_run(run_id="run_abc123")
# See the create_test_session reference documentation (linked above)
# for more options, like overriding the baseline or specifying tags
# to choose a subset of test to run
dbnl.create_test_session(
experiment_run=run,
)Last updated
Was this helpful?

