diff options
| author | J08nY | 2025-11-21 13:08:41 +0100 |
|---|---|---|
| committer | J08nY | 2025-11-21 13:08:41 +0100 |
| commit | d1946d8eca985eb2ae5cd6db60afc3196f6cd5ce (patch) | |
| tree | 978827c4735f2e947e23b1f07286c51bb326d7a4 /test | |
| parent | 4712ca03b48f694db75250ebcfb04bf3745c8605 (diff) | |
| download | pyecsca-d1946d8eca985eb2ae5cd6db60afc3196f6cd5ce.tar.gz pyecsca-d1946d8eca985eb2ae5cd6db60afc3196f6cd5ce.tar.zst pyecsca-d1946d8eca985eb2ae5cd6db60afc3196f6cd5ce.zip | |
Diffstat (limited to 'test')
| -rw-r--r-- | test/sca/test_epa.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/sca/test_epa.py b/test/sca/test_epa.py index 65caa92..0975e35 100644 --- a/test/sca/test_epa.py +++ b/test/sca/test_epa.py @@ -1,4 +1,5 @@ import random +import sys from functools import partial import networkx as nx @@ -343,6 +344,7 @@ def toy_params(): return DomainParameters(curve, g, 0xCB5E1D94601A3AC5, 1) +@pytest.mark.skipif(sys.version_info < (3, 11), reason="Requires Python 3.11 or higher (networkx >= 3.5)") def test_plot(toy_params, mult, plot_path): mult_class, mult_factory = mult precomp_ctx, full_ctx, out = multiple_graph( |
