summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.travis.yml3
-rw-r--r--appveyor.yml3
2 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index d489bed677..3a9cd49e98 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,9 @@ script:
- cargo build --verbose
- cargo test --verbose
- cargo fmt -- --write-mode=diff
+ - cd talpid_cli/
+ - cargo test --verbose
+ - cargo fmt -- --write-mode=diff
notifications:
email:
diff --git a/appveyor.yml b/appveyor.yml
index 7f7628d01f..34a8906cce 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -44,7 +44,8 @@ test_script:
cargo build --target %TARGET% && echo "DEBUG BUILD DONE" &&
cargo build --target %TARGET% --release && echo "RELEASE BUILD DONE" &&
cargo test --target %TARGET% && echo "DEBUG TESTING DONE" &&
- cargo test --target %TARGET% --release && echo "RELEASE TESTING DONE"
+ cargo test --target %TARGET% --release && echo "RELEASE TESTING DONE" &&
+ cd talpid_cli/ && cargo test --target %TARGET%
)
# Cache build binaries for faster builds next time