add travis

This commit is contained in:
Roman Storm 2017-11-09 18:22:19 -08:00
parent 6b1173b442
commit b4589ad052
6 changed files with 4117 additions and 0 deletions

1
.python-version Normal file
View File

@ -0,0 +1 @@
system

5
.solcover.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
norpc: true,
testCommand: 'node --max-old-space-size=4096 ../node_modules/.bin/truffle test --network coverage',
skipFiles: ['Migrations.sol']
}

1
.soliumignore Normal file
View File

@ -0,0 +1 @@
node_modules

4101
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -15,5 +15,11 @@
"moment": "^2.19.1",
"truffle": "^4.0.1",
"zeppelin-solidity": "^1.3.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"ethereumjs-testrpc": "^6.0.1",
"mochawesome": "^2.3.1",
"solidity-coverage": "^0.4.0"
}
}

View File

@ -7,5 +7,8 @@ module.exports = {
port: 8545,
network_id: "*" // Match any network id
}
},
mocha: {
reporter: 'mochawesome'
}
};