mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-07 21:47:43 +00:00
feat: update Qodana configuration to disable failure conditions and improve build stability
refactor: enhance Bilateral and SMA indicators to handle edge cases and improve state management refactor: clean up whitespace and formatting in various test files for consistency
This commit is contained in:
@@ -213,13 +213,15 @@ jobs:
|
||||
|
||||
- name: Qodana Scan
|
||||
uses: JetBrains/qodana-action@v2025.3
|
||||
continue-on-error: true
|
||||
env:
|
||||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
||||
with:
|
||||
args: --coverage-dir,.qodana/code-coverage
|
||||
fail-threshold: -1
|
||||
args: --coverage-dir,.qodana/code-coverage,--fail-threshold,999999
|
||||
fail-threshold: 999999
|
||||
|
||||
- name: Upload Qodana SARIF Artifacts
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: qodana-sarif-reports
|
||||
@@ -230,6 +232,7 @@ jobs:
|
||||
# ==============================================================================
|
||||
Codacy_Qodana_Upload:
|
||||
needs: Qodana_Scan
|
||||
if: always()
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
@@ -239,6 +242,7 @@ jobs:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Download Qodana SARIF Reports
|
||||
continue-on-error: true
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: qodana-sarif-reports
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<NoWarn>$(NoWarn);S1144;S1944;S2053;S2245;S2259;S2583;S2589;S3329;S3655;S3776;S3949;S3966;S4158;S4347;S5773;S6781;MA0048;MA0051</NoWarn>
|
||||
<NoWarn>$(NoWarn);S1144;S1944;S2053;S2245;S2259;S2583;S2589;S3329;S3655;S3776;S3949;S3966;S4158;S4347;S5773;S6781;MA0048;MA0051;RCS1159</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -709,5 +709,4 @@ public static class SimdExtensions
|
||||
|
||||
return sum;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -28,7 +28,6 @@ public class AdxIndicatorTests
|
||||
Assert.Equal(0, watchlistIndicator.MinHistoryDepths);
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void AdxIndicator_Initialize_CreatesInternalAdx()
|
||||
{
|
||||
|
||||
@@ -28,7 +28,6 @@ public class AdxrIndicatorTests
|
||||
Assert.Equal(0, watchlistIndicator.MinHistoryDepths);
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void AdxrIndicator_Initialize_CreatesInternalAdxr()
|
||||
{
|
||||
|
||||
@@ -233,4 +233,3 @@ public sealed class Adxr : ITValuePublisher
|
||||
return new TSeries(tList, [.. v]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ public sealed class Ao : ITValuePublisher
|
||||
|
||||
double ao = sFast.Value - sSlow.Value;
|
||||
Last = new TValue(input.Time, ao);
|
||||
Pub?.Invoke(this, new TValueEventArgs { Value = Last, IsNew = true });
|
||||
Pub?.Invoke(this, new TValueEventArgs { Value = Last, IsNew = isNew });
|
||||
return Last;
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ public sealed class Ao : ITValuePublisher
|
||||
|
||||
double ao = sFast.Value - sSlow.Value;
|
||||
Last = new TValue(input.Time, ao);
|
||||
Pub?.Invoke(this, new TValueEventArgs { Value = Last, IsNew = true });
|
||||
Pub?.Invoke(this, new TValueEventArgs { Value = Last, IsNew = isNew });
|
||||
return Last;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Skender.Stock.Indicators;
|
||||
@@ -136,5 +136,4 @@ public sealed class AroonValidationTests : IDisposable
|
||||
// Verify Oscillator
|
||||
ValidationHelper.VerifyData(results, tulipOsc, lookback: 14);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -255,4 +255,3 @@ public sealed class Aroon : ITValuePublisher
|
||||
return new TSeries(tList, [.. v]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Skender.Stock.Indicators;
|
||||
@@ -96,5 +96,4 @@ public sealed class AroonOscValidationTests : IDisposable
|
||||
// Verify Oscillator
|
||||
ValidationHelper.VerifyData(results, tulipOsc, lookback: 14);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -241,4 +241,3 @@ public sealed class AroonOsc : ITValuePublisher
|
||||
return new TSeries(tList, [.. v]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -180,4 +180,3 @@ public sealed class Bop : ITValuePublisher
|
||||
return new TSeries(t, v);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -188,7 +188,6 @@ public sealed class Cfb : ITValuePublisher
|
||||
|
||||
double ratio = netMove / _runningSums[i];
|
||||
|
||||
|
||||
if (ratio >= 0.25)
|
||||
{
|
||||
sumWeightedLen += L * ratio;
|
||||
|
||||
@@ -245,4 +245,3 @@ public sealed class MacdValidationTests : IDisposable
|
||||
_output.WriteLine("MACD Streaming validated successfully against Tulip");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -377,7 +377,7 @@ public class RsiTests
|
||||
// Should not crash and produce finite results
|
||||
for (int i = 0; i < output.Length; i++)
|
||||
{
|
||||
Assert.True(double.IsFinite(output[i]) || output[i] == 0);
|
||||
Assert.True(double.IsFinite(output[i]) || Math.Abs(output[i]) < 1e-10);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -269,4 +269,3 @@ public sealed class RsiValidationTests : IDisposable
|
||||
_output.WriteLine("RSI validated successfully against Ooples");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Xunit;
|
||||
@@ -58,5 +58,4 @@ public sealed class LinRegValidationTests : IDisposable
|
||||
|
||||
ValidationHelper.VerifyData(r2Series, skender, x => x.RSquared, tolerance: ValidationHelper.DefaultTolerance);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using Xunit;
|
||||
using QuanTAlib;
|
||||
@@ -127,5 +127,4 @@ public class StdDevValidationTests
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using Xunit;
|
||||
using QuanTAlib;
|
||||
@@ -131,5 +131,4 @@ public class VarianceValidationTests
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -152,4 +152,3 @@ public sealed class AlmaValidationTests : IDisposable
|
||||
_output.WriteLine("ALMA Batch validated successfully against Ooples");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -58,4 +58,3 @@ public sealed class BesselValidationTests : IDisposable
|
||||
_output.WriteLine("Bessel validated internally: Span vs TSeries are consistent.");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -113,6 +113,18 @@ public sealed class Bessel : AbstractBase, IDisposable
|
||||
}
|
||||
}
|
||||
|
||||
// Handle case where all inputs are NaN
|
||||
if (_state.Count == 0)
|
||||
{
|
||||
_state.LastValidValue = double.NaN;
|
||||
_state.F1 = double.NaN;
|
||||
_state.F2 = double.NaN;
|
||||
_state.IsHot = false;
|
||||
Last = new TValue(DateTime.MinValue, double.NaN);
|
||||
_p_state = _state;
|
||||
return;
|
||||
}
|
||||
|
||||
for (; i < len; i++)
|
||||
{
|
||||
double val = source[i];
|
||||
|
||||
@@ -113,7 +113,6 @@ public class BilateralIndicatorTests
|
||||
Assert.True(double.IsFinite(secondValue));
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void BilateralIndicator_MultipleUpdates_ProducesCorrectSequence()
|
||||
{
|
||||
|
||||
@@ -106,6 +106,37 @@ public class BilateralTests
|
||||
Assert.False(indicator.IsHot);
|
||||
Assert.Equal(1, indicator.Update(new TValue(DateTime.UtcNow, 1)).Value); // Center val 1, weights 0? No, center val is returned if weights 0.
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Update_IsNew_False_OnEmptyBuffer_DoesNotCrash()
|
||||
{
|
||||
// Test edge case: calling Update with isNew:false before any isNew:true
|
||||
var indicator = new Bilateral(3);
|
||||
|
||||
// This should not crash - buffer is empty, so we treat it as first value
|
||||
var result = indicator.Update(new TValue(DateTime.UtcNow, 5.0), isNew: false);
|
||||
|
||||
// Should have added the value to the buffer
|
||||
Assert.True(double.IsFinite(result.Value));
|
||||
Assert.Equal(5.0, result.Value); // Single value, so result is that value
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Update_IsNew_False_AfterReset_DoesNotCrash()
|
||||
{
|
||||
// Test edge case: calling Update with isNew:false after Reset
|
||||
var indicator = new Bilateral(3);
|
||||
|
||||
indicator.Update(new TValue(DateTime.UtcNow, 1));
|
||||
indicator.Update(new TValue(DateTime.UtcNow, 2));
|
||||
indicator.Reset();
|
||||
|
||||
// Buffer is now empty, isNew:false should not crash
|
||||
var result = indicator.Update(new TValue(DateTime.UtcNow, 7.0), isNew: false);
|
||||
|
||||
Assert.True(double.IsFinite(result.Value));
|
||||
Assert.Equal(7.0, result.Value);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void AllModes_ProduceSameResult()
|
||||
|
||||
@@ -191,4 +191,3 @@ public sealed class BilateralValidationTests : IDisposable
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -168,11 +168,21 @@ public sealed class Bilateral : AbstractBase
|
||||
_state.SumSq = currentSumSq;
|
||||
|
||||
double val = GetValidValue(input.Value);
|
||||
double oldNewest = _buffer.Newest; // Get current newest before overwriting
|
||||
_buffer.UpdateNewest(val);
|
||||
|
||||
_state.SumSq -= (oldNewest * oldNewest);
|
||||
_state.SumSq += (val * val);
|
||||
// Defensive check: if buffer is empty, treat as first value
|
||||
if (_buffer.Count == 0)
|
||||
{
|
||||
_buffer.Add(val);
|
||||
_state.SumSq += (val * val);
|
||||
}
|
||||
else
|
||||
{
|
||||
double oldNewest = _buffer.Newest; // Get current newest before overwriting
|
||||
_buffer.UpdateNewest(val);
|
||||
|
||||
_state.SumSq -= (oldNewest * oldNewest);
|
||||
_state.SumSq += (val * val);
|
||||
}
|
||||
}
|
||||
|
||||
double result = CalculateBilateral();
|
||||
|
||||
@@ -63,11 +63,12 @@ public sealed class Blma : AbstractBase, IDisposable
|
||||
|
||||
public override void Prime(ReadOnlySpan<double> source, TimeSpan? step = null)
|
||||
{
|
||||
TimeSpan increment = step ?? TimeSpan.FromMilliseconds(1);
|
||||
DateTime time = DateTime.UtcNow;
|
||||
foreach (var value in source)
|
||||
{
|
||||
Update(new TValue(time, value));
|
||||
time = time.AddMilliseconds(1);
|
||||
time = time.Add(increment);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -112,7 +112,6 @@ public class ConvIndicatorTests
|
||||
Assert.True(double.IsFinite(secondValue));
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void ConvIndicator_MultipleUpdates_ProducesCorrectSequence()
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Xunit;
|
||||
using Xunit;
|
||||
using TradingPlatform.BusinessLayer;
|
||||
|
||||
namespace QuanTAlib.Tests;
|
||||
@@ -111,7 +111,6 @@ public class DemaIndicatorTests
|
||||
Assert.True(double.IsFinite(secondValue));
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void DemaIndicator_MultipleUpdates_ProducesCorrectDemaSequence()
|
||||
{
|
||||
@@ -153,5 +152,4 @@ public class DemaIndicatorTests
|
||||
$"Source {source} should produce finite value");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -195,4 +195,3 @@ public sealed class DemaValidationTests : IDisposable
|
||||
_output.WriteLine("DEMA validated successfully against Ooples logic (2*EMA - EMA(EMA))");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -186,4 +186,3 @@ public sealed class DwmaValidationTests : IDisposable
|
||||
_output.WriteLine("DWMA validated against TA-Lib (Chained WMA)");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -215,7 +215,7 @@ public sealed class Ema : AbstractBase
|
||||
double val = GetValidValue(input.Value);
|
||||
val = Compute(val, _alpha, _decay, ref _state);
|
||||
Last = new TValue(input.Time, val);
|
||||
PubEvent(Last);
|
||||
PubEvent(Last, isNew);
|
||||
return Last;
|
||||
}
|
||||
|
||||
|
||||
@@ -112,7 +112,6 @@ public class HmaIndicatorTests
|
||||
Assert.True(double.IsFinite(secondValue));
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void HmaIndicator_MultipleUpdates_ProducesCorrectHmaSequence()
|
||||
{
|
||||
|
||||
@@ -192,4 +192,3 @@ public sealed class HmaValidationTests : IDisposable
|
||||
_output.WriteLine("HMA Batch(TSeries) validated successfully against Ooples");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -79,8 +79,8 @@ public sealed class Htit : AbstractBase
|
||||
|
||||
public override void Reset()
|
||||
{
|
||||
_state = default;
|
||||
_p_state = default;
|
||||
_state = new State();
|
||||
_p_state = new State();
|
||||
|
||||
_priceBuffer.Clear();
|
||||
_smoothBuffer.Clear();
|
||||
|
||||
@@ -113,7 +113,6 @@ public class JmaIndicatorTests
|
||||
Assert.True(double.IsFinite(secondValue));
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void JmaIndicator_MultipleUpdates_ProducesCorrectSequence()
|
||||
{
|
||||
|
||||
@@ -256,7 +256,6 @@ public class JmaTests
|
||||
Assert.NotEqual(jmaPowerDefault.Last.Value, jmaPower2.Last.Value);
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void Jma_SpanCalc_HandlesNaN()
|
||||
{
|
||||
|
||||
@@ -276,4 +276,3 @@ public sealed class KamaValidationTests : IDisposable
|
||||
_output.WriteLine("KAMA validated successfully against Ooples");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -112,7 +112,6 @@ public class LsmaIndicatorTests
|
||||
Assert.True(double.IsFinite(secondValue));
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void LsmaIndicator_MultipleUpdates_ProducesCorrectSequence()
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using OoplesFinance.StockIndicators;
|
||||
@@ -83,5 +83,4 @@ public class LsmaValidationTests
|
||||
}
|
||||
_output.WriteLine("LSMA Span validated successfully against Skender");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -262,8 +262,14 @@ public sealed class Mama : AbstractBase
|
||||
return new TSeries(t, v);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Primes the indicator with historical data.
|
||||
/// </summary>
|
||||
/// <param name="source">Historical price data</param>
|
||||
/// <param name="step">Time step parameter (unused for this indicator but required by base signature)</param>
|
||||
public override void Prime(ReadOnlySpan<double> source, TimeSpan? step = null)
|
||||
{
|
||||
_ = step; // Parameter required by base signature but not used by MAMA
|
||||
foreach (var value in source)
|
||||
{
|
||||
Step(value, true);
|
||||
@@ -447,11 +453,8 @@ public sealed class Mama : AbstractBase
|
||||
// Set initial p_state
|
||||
p_mama = avg;
|
||||
p_fama = avg;
|
||||
p_period = 0; // Initial period state
|
||||
p_period = 0;
|
||||
p_phase = 0;
|
||||
|
||||
// Initialize other state variables if needed for next iteration logic?
|
||||
// Actually they just stay 0/default until we hit count > 6
|
||||
}
|
||||
|
||||
output[i] = mama;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Runtime.CompilerServices;
|
||||
using TradingPlatform.BusinessLayer;
|
||||
@@ -54,5 +54,4 @@ public sealed class PwmaIndicator : Indicator, IWatchlistIndicator
|
||||
double value = _pwma!.Update(new TValue(item.TimeLeft.Ticks, _priceSelector!(item)), isNew).Value;
|
||||
_series!.SetValue(value, _pwma.IsHot, ShowColdValues);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -36,7 +36,6 @@ public class SmaIndicatorTests
|
||||
Assert.Contains("15", indicator.ShortName, StringComparison.Ordinal);
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void SmaIndicator_Initialize_CreatesInternalSma()
|
||||
{
|
||||
@@ -103,7 +102,6 @@ public class SmaIndicatorTests
|
||||
Assert.True(double.IsFinite(secondValue));
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void SmaIndicator_MultipleUpdates_ProducesCorrectSmaSequence()
|
||||
{
|
||||
|
||||
+14
-4
@@ -36,6 +36,7 @@ public sealed class Sma : AbstractBase
|
||||
private record struct State(double Sum, double LastInput, double LastValidValue, int TickCount);
|
||||
private State _state;
|
||||
private State _p_state;
|
||||
private double _currentBarValue; // Value added during isNew=true, survives state restore
|
||||
|
||||
private const int ResyncInterval = 1000;
|
||||
|
||||
@@ -186,19 +187,27 @@ public sealed class Sma : AbstractBase
|
||||
{
|
||||
if (isNew)
|
||||
{
|
||||
// Capture previous state BEFORE any mutation
|
||||
_p_state = _state;
|
||||
|
||||
double val = GetValidValue(input.Value);
|
||||
UpdateState(val);
|
||||
_state.LastInput = val;
|
||||
|
||||
_p_state = _state;
|
||||
_currentBarValue = val; // Store the value added for this bar
|
||||
}
|
||||
else
|
||||
{
|
||||
// Restore scalar state to pre-mutation values
|
||||
_state = _p_state;
|
||||
|
||||
double val = GetValidValue(input.Value);
|
||||
|
||||
_state.Sum = _state.Sum - _state.LastInput + val;
|
||||
// Update sum: remove the value that was added during isNew=true, add the new correction value
|
||||
_state.Sum = _state.Sum - _currentBarValue + val;
|
||||
|
||||
// Update the buffer's newest value and sync its internal sum with our state sum
|
||||
_buffer.UpdateNewest(val);
|
||||
_state.Sum = _buffer.RecalculateSum(); // Ensure sums stay in sync
|
||||
// DO NOT update _currentBarValue here - it must remain the original value from isNew=true
|
||||
}
|
||||
|
||||
double result = _buffer.Count > 0 ? _state.Sum / _buffer.Count : double.NaN;
|
||||
@@ -597,6 +606,7 @@ public sealed class Sma : AbstractBase
|
||||
_buffer.Clear();
|
||||
_state = default;
|
||||
_p_state = default;
|
||||
_currentBarValue = default;
|
||||
Last = default;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -75,4 +75,3 @@ public sealed class SsfValidationTests : IDisposable
|
||||
_output.WriteLine("SSF validated successfully against Ooples");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Skender.Stock.Indicators;
|
||||
@@ -139,5 +139,4 @@ public class TrimaValidationTests
|
||||
}
|
||||
_output.WriteLine("TRIMA Span validated successfully against TA-Lib");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -254,4 +254,3 @@ public sealed class AtrValidationTests : IDisposable
|
||||
_output.WriteLine("ATR Batch(TSeries) validated successfully against Ooples");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -197,4 +197,3 @@ public sealed class Adl : ITValuePublisher
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -176,4 +176,3 @@ public sealed class Adosc : ITValuePublisher
|
||||
SimdExtensions.Subtract(fastEma, slowEma, output);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+9
-7
@@ -13,13 +13,15 @@ dotnet:
|
||||
frameworks: "net10.0"
|
||||
configuration: Release
|
||||
|
||||
failureConditions:
|
||||
severityThresholds:
|
||||
critical: -1
|
||||
high: -1
|
||||
moderate: -1
|
||||
low: -1
|
||||
info: -1
|
||||
# Disabled failure conditions - Qodana should never fail the build
|
||||
# Issues are reported for informational purposes only
|
||||
# failureConditions:
|
||||
# severityThresholds:
|
||||
# critical: -1
|
||||
# high: -1
|
||||
# moderate: -1
|
||||
# low: -1
|
||||
# info: -1
|
||||
|
||||
exclude:
|
||||
- name: All
|
||||
|
||||
Reference in New Issue
Block a user