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 9774141 commit 795d30a
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 @@ -639,6 +639,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 @@ -677,6 +678,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 795d30a

Please sign in to comment.