瀏覽代碼

Merge pull request #51 from janbernloehr/nunit

Adding configurations for AppVeyor and Travis CI
master
PrzemyslawKlys 9 年之前
父節點
當前提交
101fe28780
共有 2 個文件被更改,包括 13 次插入0 次删除
  1. 8
    0
      .travis.yml
  2. 5
    0
      appveyor.yml

+ 8
- 0
.travis.yml 查看文件

@@ -0,0 +1,8 @@
language: csharp
solution: DocX.sln
install:
- nuget restore DocX.sln
- nuget install NUnit.Console -Version 3.4.1 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Debug DocX.sln
- mono --debug ./testrunner/NUnit.ConsoleRunner.3.4.1/tools/nunit3-console.exe ./UnitTests/bin/Debug/UnitTests.dll

+ 5
- 0
appveyor.yml 查看文件

@@ -0,0 +1,5 @@
before_build:
- nuget restore DocX.sln
build:
project: DocX.sln
verbosity: minimal

Loading…
取消
儲存