Skip to content
This repository has been archived by the owner on Sep 9, 2023. It is now read-only.

Latest commit

 

History

History
22 lines (15 loc) · 662 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (15 loc) · 662 Bytes

Contributing to dbstress

Thank you for considering a new contribution to dbstress!

Important commands

sbt test # Run unit tests
sbt it:test # Run integration tests (see below how to setup postgres)
sbt packArchive # Build distribution archive

sbt scalafmtAll scalafmtSbt # Reformat source code before submitting a new pull request

sbt dependencyUpdates # Check for updated dependencies

Running integrations tests

For integration tests (sbt it:test), the following docker container must be running:

docker run -e POSTGRES_USER=dbstress -e POSTGRES_PASSWORD=dbstress -e POSTGRES_DB=dbstress -p 5432:5432 -d postgres:latest