From 06106fbc58f34ad9f24644977536f343e85c1b60 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Thu, 22 Nov 2018 18:05:00 -0500 Subject: [PATCH] Don't run integration tests on appveyor It is [possible](https://stefanscherer.github.io/setup-windows-docker-ci-appveyor/) but I don't want to dig into it atm. --- appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 8fc6e6f..7e1300f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -65,4 +65,7 @@ build: false test_script: - cargo check --all-targets - - cargo test + - cargo test --lib + - cargo test --doc + - cargo test --examples +# note that we are not running integration tests!