From 8c478b7b4769d655c31f687384df07366e18f813 Mon Sep 17 00:00:00 2001 From: "joe.miyamoto" Date: Tue, 9 Jun 2020 15:44:15 +0900 Subject: [PATCH] Stop running Infrastructure tests in CI. * Infrastructure tests are fragile. And we don't have a plan to support it in the future. We will probably remove the whole code later. * see * https://github.com/joemphilips/DotNetLightning/issues/98 * https://github.com/joemphilips/DotNetLightning/issues/99 --- .github/workflows/ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1fcaf0a0..e0eaff434 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,12 +21,6 @@ jobs: run: | dotnet build tests/DotNetLightning.Core.Tests -p:BouncyCastle=True dotnet run --project tests/DotNetLightning.Core.Tests - - name: Run Infrastructure tests on BouncyCastle - # we want to run only once. - if: startsWith(matrix.os, 'ubuntu-18') - run: | - dotnet build tests/DotNetLightning.Infrastructure.Tests -p:BouncyCastle=True - dotnet run --project tests/DotNetLightning.Infrastructure.Tests - name: Clean to prepare for NSec build run: | @@ -34,9 +28,6 @@ jobs: - name: Run core tests run: | dotnet run --project tests/DotNetLightning.Core.Tests - - name: Run Infrastructure tests - run: | - dotnet run --project tests/DotNetLightning.Infrastructure.Tests - name: Run other tests run: | dotnet test