strip some tests

This commit is contained in:
ThatBen 2025-04-28 15:29:40 +02:00
parent 54227685ec
commit 369996afd5
No known key found for this signature in database
GPG Key ID: E020A7DDCD52E1AB
3 changed files with 2 additions and 15 deletions

View File

@ -7,14 +7,8 @@ namespace CodexReleaseTests.MarketTests
[TestFixture(6, 3, 1)]
[TestFixture(6, 4, 2)]
[TestFixture(8, 5, 1)]
[TestFixture(8, 5, 2)]
[TestFixture(8, 6, 1)]
[TestFixture(8, 6, 2)]
[TestFixture(8, 6, 3)]
[TestFixture(8, 8, 1)]
[TestFixture(8, 8, 2)]
[TestFixture(8, 8, 3)]
[TestFixture(8, 8, 4)]
public class ContractSuccessfulTest : MarketplaceAutoBootstrapDistTest
{
public ContractSuccessfulTest(int hosts, int slots, int tolerance)

View File

@ -7,16 +7,9 @@ namespace CodexReleaseTests.MarketTests
{
[TestFixture(6, 3, 1)]
[TestFixture(6, 4, 1)]
[TestFixture(6, 4, 2)]
[TestFixture(8, 5, 1)]
[TestFixture(8, 5, 2)]
[TestFixture(8, 6, 1)]
[TestFixture(8, 6, 2)]
[TestFixture(8, 6, 3)]
[TestFixture(8, 8, 1)]
[TestFixture(8, 8, 2)]
[TestFixture(8, 8, 3)]
[TestFixture(8, 8, 4)]
public class MultipleContractsTest : MarketplaceAutoBootstrapDistTest
{
public MultipleContractsTest(int hosts, int slots, int tolerance)
@ -40,7 +33,7 @@ namespace CodexReleaseTests.MarketTests
[Test]
[Combinatorial]
public void MultipleContractGenerations(
[Values(5, 10)] int numGenerations)
[Values(10)] int numGenerations)
{
var hosts = StartHosts();
var clients = StartClients();

View File

@ -1,6 +1,6 @@
using NUnit.Framework;
[assembly: LevelOfParallelism(1)]
[assembly: LevelOfParallelism(4)]
namespace CodexReleaseTests.DataTests
{
}