Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.02 KB

DEVELOPMENT.md

File metadata and controls

43 lines (30 loc) · 1.02 KB

Thetta DAO Framework (for Developers)

Please submit issues here.

PRs Welcome

Codeship Status for Thetta/SmartContracts

Branches

  1. master is for releases only
  2. dev is for testing
  3. dev2 is for development

Testing

npm run test

Testing specific file

npm run test -- test/moneyflow_tests.js

CodeShip Continuous Integration script

# reqs
npm install -g [email protected]
nvm install 10.5.0
npm install -g ganache-cli

# solc is 0.4.23
# zeppelin-solidity is 1.9.0
npm install -g [email protected]

# test
npm run test

# coverage via coveralls.io, run only for master and dev branches
if [ "$CI_BRANCH" == "master" ] || [ "$CI_BRANCH" == "dev" ]; then npm run coveralls; fi