1
2import os
3
4from . import get_ext_suffix, project_setup_py_test
5
6
7@project_setup_py_test("issue-284-build-ext-inplace", ["build_ext", "--inplace"], disable_languages_test=True)
8def test_build_ext_inplace_command():
9    assert os.path.exists('hello/_hello_sk%s' % get_ext_suffix())
10    assert os.path.exists('hello/_hello_ext%s' % get_ext_suffix())
11