Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make stages clearer as suggested by @nventuro
  • Loading branch information
Leo Arias committed Jun 12, 2018
commit 046eb0c045e93e14e97a58a127fcc5daedd00489
19 changes: 10 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,21 @@ jobs:
- env: SOLIDITY_COVERAGE=true
- env: SOLC_NIGHTLY=true
include:
# Run the unit test suite three times in parallel.
# The first one gets results faster and is the only one required to pass.
# The second one generates the coverage report.
# The third one is to keep us informed about possible issues with the
# upcoming solidity release.
- stage: unit
script: npm run test
- stage: unit
# Run the unit test suite three times in parallel.
# The first one gets results faster and is the only one required to pass.
# The second one generates the coverage report.
# The third one is to keep us informed about possible issues with the
# upcoming solidity release.
script: npm run test
- script: npm run test
env: SOLIDITY_COVERAGE=true
- script: npm run test
- stage: unit
script: npm run test
env: SOLC_NIGHTLY=true
# solidity and javascript style tests.
- stage: static
# solidity and javascript style tests.
# Required to pass before running the rest of the tests
script: npm run lint

notifications:
Expand Down