diff --git a/.travis.yml b/.travis.yml index 6611daa..f119da4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,5 +18,7 @@ before_install: install: - travis_retry pip install -e . -r requirements.txt script: -- python -m pytest -vv tests/infura -- python -m pytest -svv tests/parity + - python -m pytest -vv tests/infura + - python -m pytest -vv tests/parity +after_script: + - pkill -f parity diff --git a/tests/setup/setup_parity.sh b/tests/setup/setup_parity.sh index 00ba725..2d0ccb5 100755 --- a/tests/setup/setup_parity.sh +++ b/tests/setup/setup_parity.sh @@ -7,5 +7,5 @@ echo "deb [trusted=yes] http://ftp.debian.org/debian testing main" > testing.lis sudo apt update sudo apt-get -t testing install libstdc++6 curl -O "https://storage.googleapis.com/ether_sql/export_blocks_mainnet.rlp" -./parity import ./export_blocks_mainnet.rlp --tracing on -(./parity &) +./parity import ./export_blocks_mainnet.rlp --tracing=on --pruning=archive +nohup ./parity --tracing=on --pruning=archive &