Skip to content

Commit

Permalink
Skip another test depending on setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlatr committed Sep 13, 2024
1 parent c1acd7a commit df769b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydoctor/test/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def test_c_module_text_signature(capsys:CapSys) -> None:
# cleanup
subprocess.getoutput(f'rm -f {package_path}/*.so')

@pytest.mark.skipif("platform.python_implementation() == 'PyPy'")
@pytest.mark.skipif("platform.python_implementation() == 'PyPy' or platform.system() == 'Windows'")
def test_c_module_python_module_name_clash(capsys:CapSys) -> None:
c_module_python_module_name_clash = testpackages / 'c_module_python_module_name_clash'
package_path = c_module_python_module_name_clash / 'mymod'
Expand Down

0 comments on commit df769b8

Please sign in to comment.