Skip to content
This repository has been archived by the owner on Sep 18, 2020. It is now read-only.

Commit

Permalink
Merge pull request #95 from paritytech/snd-integration-tests
Browse files Browse the repository at this point in the history
fix for #87 & integration tests to prevent regression
  • Loading branch information
debris authored Jan 24, 2018
2 parents 1de3cc3 + b6a34c6 commit 7d9a875
Show file tree
Hide file tree
Showing 12 changed files with 808 additions and 318 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ truffle/build
node_modules

compiled_contracts

integration-tests/tmp
21 changes: 18 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ matrix:
- sudo add-apt-repository ppa:ethereum/ethereum -y
- sudo apt-get update -y
- sudo apt-get install solc -y
- wget https://parity-downloads-mirror.parity.io/v1.8.6/x86_64-unknown-linux-gnu/parity
- chmod +x parity
- cp parity ${HOME}/bin
- export PATH=${HOME}/bin:${PATH}
- cd integration-tests
script:
- cargo test --all
- env BACKTRACE=1 cargo test --all -- --nocapture
- language: rust
rust: beta
cache: cargo
Expand All @@ -23,8 +28,13 @@ matrix:
- sudo add-apt-repository ppa:ethereum/ethereum -y
- sudo apt-get update -y
- sudo apt-get install solc -y
- wget https://parity-downloads-mirror.parity.io/v1.8.6/x86_64-unknown-linux-gnu/parity
- chmod +x parity
- cp parity ${HOME}/bin
- export PATH=${HOME}/bin:${PATH}
- cd integration-tests
script:
- cargo test --all
- env BACKTRACE=1 cargo test --all -- --nocapture
- language: rust
rust: nightly
cache: cargo
Expand All @@ -33,8 +43,13 @@ matrix:
- sudo add-apt-repository ppa:ethereum/ethereum -y
- sudo apt-get update -y
- sudo apt-get install solc -y
- wget https://parity-downloads-mirror.parity.io/v1.8.6/x86_64-unknown-linux-gnu/parity
- chmod +x parity
- cp parity ${HOME}/bin
- export PATH=${HOME}/bin:${PATH}
- cd integration-tests
script:
- cargo test --all
- env BACKTRACE=1 cargo test --all -- --nocapture
- language: node_js
node_js: node
cache: yarn
Expand Down
Loading

0 comments on commit 7d9a875

Please sign in to comment.