Submit multiple JUnit reports for a test run to get aggregate statistics (such as which tests fail the most often).
This is Rough and ready i.e. barely any error handling to speak of, not forgiving of poor inputs. It is heavily influenced by the JUnit format that Cypress outputs.
This project currently only supports a postgres database
Variable Name | Description |
---|---|
DB_HOST | The host of your database |
DB_USERNAME | The username to connect to your database as |
DB_PASSWORD | The password to use when connecting to your database |
docker build -f build/Dockerfile -t flake .
docker run flake -e DB_PASSWORD=foo -e DB_USERNAME=bar -e DB_HOST=localhost
DB_PASSWORD=foo DB_USERNAME=bar DB_HOST=localhost sbt run