summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index fb1873e3..9ae4200a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,7 +13,7 @@ install:
- php composer-setup.php
- php composer.phar install --no-interaction --prefer-source
- find src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php -l
- - chmod +x src/bin/rr && src/bin/rr get-binary
+ - chmod +x bin/rr && bin/rr get-binary
script:
- go test -race -v -coverprofile=lib.txt -covermode=atomic
@@ -25,6 +25,7 @@ script:
- go test ./service/static -race -v -coverprofile=static.txt -covermode=atomic
- go test ./service/limit -race -v -coverprofile=limit.txt -covermode=atomic
- go test ./service/headers -race -v -coverprofile=headers.txt -covermode=atomic
+ - go test ./service/metrics -race -v -coverprofile=metrics.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash) -f lib.txt
@@ -36,6 +37,7 @@ after_success:
- bash <(curl -s https://codecov.io/bash) -f static.txt
- bash <(curl -s https://codecov.io/bash) -f limit.txt
- bash <(curl -s https://codecov.io/bash) -f headers.txt
+ - bash <(curl -s https://codecov.io/bash) -f metrics.txt
jobs:
include: