diff options
| -rw-r--r-- | .travis.yml | 5 | ||||
| -rw-r--r-- | appveyor.yml | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 3a9cd49e98..c3763c550f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,10 @@ script: - cargo build --verbose - cargo test --verbose - cargo fmt -- --write-mode=diff - - cd talpid_cli/ + - cd talpid_openvpn_plugin/ + - cargo test --verbose + - cargo fmt -- --write-mode=diff + - cd ../talpid_cli/ - cargo test --verbose - cargo fmt -- --write-mode=diff diff --git a/appveyor.yml b/appveyor.yml index 34a8906cce..d3af2daebb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -45,7 +45,8 @@ test_script: 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" && - cd talpid_cli/ && cargo test --target %TARGET% + cd talpid_openvpn_plugin/ && cargo test --target %TARGET% + cd ../talpid_cli/ && cargo test --target %TARGET% ) # Cache build binaries for faster builds next time |
