.github/CONTRIBUTING.md

Contributing to dm

This outlines how to propose a change to dm and how to set up a local development environment with test databases.

Fixing typos

You can fix typos, spelling mistakes, or grammatical errors in the documentation directly using the GitHub web interface, as long as the changes are made in the source file. This generally means you'll need to edit roxygen2 comments in an .R, not a .Rd file. You can find the .R file that generates the .Rd by reading the comment in the first line.

Bigger changes

If you want to make a bigger change, it's a good idea to first file an issue and make sure someone from the team agrees that it’s needed. If you’ve found a bug, please file an issue that illustrates the bug with a minimal reprex (this will also help you write a unit test, if needed).

Pull request process

Code style & design

General remarks

Testing

Function naming

See vignette function naming logic.

Error messages

We strive to standardise error messages in {dm}. A failure should be triggered by abort() through a function defined in "error-helpers.R" where the error class is defined with dm_error_full() and the error message is created by a separate function. Please follow the pattern used in "error-helpers.R". Exceptions might exist but they are mostly waiting to be harmonised.

Test databases

This repository comes with a docker-compose.yml file that sets up the databases required for testing. All shell commands are expected to be run from the top-level directory of a clone of this repository.

macOS only: Install colima to run Docker containers

brew install colima docker-compose
colima start -c 4 -m 4 --vm-type vz --vz-rosetta --network-address
colima status
#  INFO[0000] colima is running using macOS Virtualization.Framework
#  INFO[0000] arch: aarch64
#  INFO[0000] runtime: docker
#  INFO[0000] mountType: virtiofs
#  INFO[0000] address: 192.168.64.2
#  INFO[0000] socket: unix:///Users/kirill/.colima/default/docker.sock

Take note of the address in the output, it will be used later.

See also https://docs.google.com/document/d/1axInaYK6oK6riRio72uTAeQazuork1X0clY9UL9gYoE/edit?usp=sharing for more details on colima.

mssql: ODBC drivers

Start new database containers

make db-start
# May take several minutes to pull the images

Start database containers without forcing recreation

make db-restart
# May take several minutes to pull the images

Connectivity test

macOS:

DM_TEST_DOCKER_HOST=192.168.64.2 make connect

Linux:

DM_TEST_DOCKER_HOST=127.0.0.1 make connect

Controlled with environment variables:

See also the Makefile.

It is recommended to adapt your .Renviron once connectivity has been established. The subsequent instructions omit setting the environment variables explicitly.

Test against a specific database backend

make test-postgres

Test against all backends

make -j1 test

Test on Docker

# make docker-build # not necessary, image available on ghcr.io
make docker-test

Code of Conduct

Please note that the dm project is released with a Contributor Code of Conduct. By contributing to this project you agree to abide by its terms.



krlmlr/dm documentation built on April 19, 2024, 5:23 p.m.