summaryrefslogtreecommitdiff
path: root/testing/embedding/test_performance.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/embedding/test_performance.py')
-rw-r--r--testing/embedding/test_performance.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/embedding/test_performance.py b/testing/embedding/test_performance.py
index f9f2605..a0e8458 100644
--- a/testing/embedding/test_performance.py
+++ b/testing/embedding/test_performance.py
@@ -2,8 +2,8 @@ import sys
from testing.embedding.test_basic import EmbeddingTests
if sys.platform == 'win32':
- import py
- py.test.skip("written with POSIX functions")
+ import pytest
+ pytestmark = pytest.mark.skip("written with POSIX functions")
class TestPerformance(EmbeddingTests):