mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
Travis speedups (#483)
* move fast tests towards the end, slow tests to the front. avoids having a long running test straggling behind when other tests have finished * testing if we can manage also with "sudo: false" * reorder tasks a bit more
This commit is contained in:
parent
360e311041
commit
590cb8b8dd
1 changed files with 6 additions and 6 deletions
12
.travis.yml
12
.travis.yml
|
@ -1,7 +1,7 @@
|
|||
language: rust
|
||||
cache: cargo
|
||||
dist: trusty
|
||||
sudo: true
|
||||
sudo: false
|
||||
rust:
|
||||
- stable
|
||||
|
||||
|
@ -17,16 +17,16 @@ env:
|
|||
global:
|
||||
- RUST_BACKTRACE="1"
|
||||
matrix:
|
||||
- TEST_DIR=core
|
||||
- RUST_TEST_THREADS=1 TEST_DIR=grin
|
||||
- TEST_DIR=store
|
||||
- TEST_DIR=chain
|
||||
- TEST_DIR=pool
|
||||
- TEST_DIR=wallet
|
||||
- TEST_DIR=p2p
|
||||
- TEST_DIR=api
|
||||
- TEST_DIR=pool
|
||||
- TEST_DIR=pow
|
||||
- TEST_DIR=wallet
|
||||
- TEST_DIR=util
|
||||
- TEST_DIR=keychain
|
||||
- RUST_TEST_THREADS=1 TEST_DIR=grin
|
||||
- TEST_DIR=core
|
||||
- TEST_DIR=util
|
||||
|
||||
script: cd $TEST_DIR && cargo test --verbose
|
||||
|
|
Loading…
Reference in a new issue