Skip to content

Commit

Permalink
Add support for appveyor (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
twsouthwick committed Mar 2, 2018
1 parent 994db19 commit 0d81e4b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
3 changes: 1 addition & 2 deletions OpenXmlPowerTools.Tests/PtUtilTests.cs
Expand Up @@ -35,9 +35,8 @@ namespace OxPt
{
public class PtUtilTests
{
[Theory]
[Theory(Skip = "This is failing on AppVeyor")]
[InlineData("PU/PU001-Test001.mht")]

public void PU001(string name)
{
FileInfo sourceMht = new FileInfo(Path.Combine(TestUtil.SourceDir.FullName, name));
Expand Down
12 changes: 12 additions & 0 deletions appveyor.yml
@@ -0,0 +1,12 @@
os: Visual Studio 2017

environment:
image: Visual Studio 2017
Configuration: Release

build_script:
- cmd: dotnet restore
- cmd: dotnet build

test_script:
- cmd: dotnet test .\OpenXmlPowerTools.Tests

0 comments on commit 0d81e4b

Please sign in to comment.