mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-18 10:46:24 +00:00
Skip on Windows.
This commit is contained in:
parent
982ac3cc33
commit
97522641d6
@ -41,6 +41,10 @@ from allmydata.test.common import (
|
||||
|
||||
if which("docker") is None:
|
||||
pytest.skip('Skipping I2P tests since Docker is unavailable', allow_module_level=True)
|
||||
# Docker on Windows machines sometimes expects Windows-y Docker images, so just
|
||||
# don't bother.
|
||||
if sys.platform.startswith('win'):
|
||||
pytest.skip('Skipping I2P tests on Windows', allow_module_level=True)
|
||||
|
||||
|
||||
@pytest.fixture(scope="session")
|
||||
|
Loading…
Reference in New Issue
Block a user