Skip to content

Commit 8650677

Browse files
committed
Rename import hpy.test to hpytest
1 parent 175430a commit 8650677

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

graalpython/com.oracle.graal.python.hpy.test/src/hpytest/debug/test_charptr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
import os
4141
import pytest
42-
from hpy.test.support import SUPPORTS_SYS_EXECUTABLE, SUPPORTS_MEM_PROTECTION, HPyTest
42+
from hpytest.support import SUPPORTS_SYS_EXECUTABLE, SUPPORTS_MEM_PROTECTION, HPyTest
4343

4444
pytestmark = pytest.mark.skipif(not HPyTest.supports_debug_mode(), reason="debug mode not supported")
4545

graalpython/com.oracle.graal.python.hpy.test/src/hpytest/debug/test_handles_invalid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939

4040
import pytest
4141
from hpy.debug.leakdetector import LeakDetector
42-
from hpy.test.support import SUPPORTS_SYS_EXECUTABLE, IS_PYTHON_DEBUG_BUILD, GRAALPYTHON, HPyTest
43-
from hpy.test.conftest import IS_VALGRIND_RUN
42+
from hpytest.support import SUPPORTS_SYS_EXECUTABLE, IS_PYTHON_DEBUG_BUILD, GRAALPYTHON, HPyTest
43+
from hpytest.conftest import IS_VALGRIND_RUN
4444

4545
pytestmark = pytest.mark.skipif(not HPyTest.supports_debug_mode(), reason="debug mode not supported")
4646

graalpython/com.oracle.graal.python.hpy.test/src/hpytest/debug/test_handles_leak.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
import pytest
4141
from hpy.debug import set_handle_stack_trace_limit, disable_handle_stack_traces
42-
from hpy.test.support import HPyTest
42+
from hpytest.support import HPyTest
4343

4444
pytestmark = pytest.mark.skipif(not HPyTest.supports_debug_mode(), reason="debug mode not supported")
4545

graalpython/com.oracle.graal.python.hpy.test/src/hpytest/debug/test_misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# SOFTWARE.
2323

2424
import pytest
25-
from test.support import SUPPORTS_SYS_EXECUTABLE, SUPPORTS_MEM_PROTECTION
25+
from hpytest.support import SUPPORTS_SYS_EXECUTABLE, SUPPORTS_MEM_PROTECTION
2626

2727
@pytest.fixture
2828
def hpy_abi():

graalpython/com.oracle.graal.python.hpy.test/src/hpytest/hpy_devel/test_distutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import py
4040
import pytest
4141

42-
from test.support import atomic_run, HPY_ROOT
42+
from hpytest.support import atomic_run, HPY_ROOT
4343

4444
# ====== IMPORTANT DEVELOPMENT TIP =====
4545
# You can use py.test --reuse-venv to speed up local testing.

0 commit comments

Comments
 (0)