Don't run tests on travis either

This commit is contained in:
Adam Hathcock
2017-05-30 12:46:34 +01:00
parent 296ebd942a
commit c30bc65281
2 changed files with 6 additions and 1 deletions

View File

@@ -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!

View File

@@ -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)