You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement at least one test
(we'd be even happier with six completed tests). When creating a database test,
use the table/collection hello_world. Our database setup scripts are stored
inside the config/ folder if you need to see the database schema.
Make sure that any packages/dependencies you are using or any git source repositories you are pulling in are locked down to specific version numbers or releases.
Ensure the framework tests implemented pass in your local environment.
GitHub Actions will test the framework when a pull request is opened. Tip: Use your own GitHub Actions queue and know the outcome of the tests before you submit a merge request. See GitHub Actions Tips and Tricks for more details.
Our official round results come from two different environments. If you'd like to
tune your tests based on those environments, you can make use of the BENCHMARK_ENV environment variable. To do that,
add the following line to your test's dockerfile:
ARG BENCHMARK_ENV
Then you'll have access to the $BENCHMARK_ENV variable throughout your dockerfile and scripts. See the environments
section for the values of that variable on each environment.
To change this value during local testing, use the --results-environment flag.