Skip to content

Commit

Permalink
mark multithreaded tests as slow
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Dec 28, 2023
1 parent c79b6c4 commit 6b3227f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ecdsa/test_jacobi.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,7 @@ def test_pickle(self):
pj = PointJacobi(curve=CurveFp(23, 1, 1, 1), x=2, y=3, z=1, order=1)
self.assertEqual(pickle.loads(pickle.dumps(pj)), pj)

@pytest.mark.slow
@settings(**NO_OLD_SETTINGS)
@pytest.mark.skipif(
platform.python_implementation() == "PyPy",
Expand Down Expand Up @@ -678,6 +679,7 @@ def runner(generator):
generator_112r2._PointJacobi__precompute,
)

@pytest.mark.slow
@pytest.mark.skipif(
platform.system() == "Windows"
or platform.python_implementation() == "PyPy",
Expand Down

0 comments on commit 6b3227f

Please sign in to comment.