Pārlūkot izejas kodu

Custom appveyor test script

Nick Babcock 7 gadi atpakaļ
vecāks
revīzija
3f956d51e9
1 mainītis faili ar 7 papildinājumiem un 10 dzēšanām
  1. 7 10
      appveyor.yml

+ 7 - 10
appveyor.yml

@@ -1,11 +1,8 @@
 image: 'Visual Studio 2017'
-
-configuration:
-  - Release
-
-before_build:
-- cmd: git submodule update --init --recursive
-- cmd: nuget restore
-
-build:
-  project: OhmGraphite.sln
+build: off
+test_script:
+  cmd: |
+      git submodule update --init --recursive
+      nuget restore
+      dotnet build -c Release ./OhmGraphite/OhmGraphite.csproj
+      dotnet test .\OhmGraphite.Test\OhmGraphite.Test.csproj