Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 609 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (18 loc) · 609 Bytes

Contribute to the development of cql-cli

Local compilation

You can make modifications to the cql-cli source code and compile it locally with:

go build .

You can then run the cql-cli executable directly or add a link in your $GOPATH to run it from a project:

ln -sf cql-cli $GOPATH/bin/cql-cli

Tests

We use the standard test suite in combination with github.com/stretchr/testify to do our unit testing.

To run them, please run:

make test