From c30bc6528193443cb1c56531ff10fc181e707541 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Tue, 30 May 2017 12:46:34 +0100 Subject: [PATCH] Don't run tests on travis either --- README.md | 4 ++++ build.cake | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 742954e3..9ff8f13e 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,12 @@ SharpCompress is a compression library in pure C# for .NET 3.5, 4.5, .NET Standa The major feature is support for non-seekable streams so large files can be processed on the fly (i.e. download stream). +AppVeyor Build - [![Build status](https://ci.appveyor.com/api/projects/status/voxg971oemmvxh1e/branch/master?svg=true)](https://ci.appveyor.com/project/adamhathcock/sharpcompress/branch/master) +Travis CI Build - +[![Build Status](https://travis-ci.org/adamhathcock/sharpcompress.svg?branch=master)](https://travis-ci.org/adamhathcock/sharpcompress) + ## Need Help? Post Issues on Github! diff --git a/build.cake b/build.cake index 58b05af5..3ef46189 100644 --- a/build.cake +++ b/build.cake @@ -39,7 +39,8 @@ Task("Test") .IsDependentOn("Build") .Does(() => { - if (!bool.Parse(EnvironmentVariable("APPVEYOR") ?? "false")) + if (!bool.Parse(EnvironmentVariable("APPVEYOR") ?? "false") + || !bool.Parse(EnvironmentVariable("TRAVIS") ?? "false")) { var files = GetFiles("tests/**/*.csproj"); foreach(var file in files)