diff options
author | Joffrey F <joffrey@docker.com> | 2016-10-13 16:45:01 -0700 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2016-10-14 16:02:28 -0700 |
commit | 9b35c74f0e7626e360dfa2f00202d23b8d08b7a5 (patch) | |
tree | 8218fc7c87f74c8e1361a5ed06fd88518b957002 /tests/integration/container_test.py | |
parent | cec3fe7c318fd22386ff5b18519609ab72db696b (diff) | |
download | docker-py-win32-test-fixes.tar.gz |
Fix dockerignore exclusion logic on Windowswin32-test-fixes
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'tests/integration/container_test.py')
-rw-r--r-- | tests/integration/container_test.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/integration/container_test.py b/tests/integration/container_test.py index 5ced082..838ec36 100644 --- a/tests/integration/container_test.py +++ b/tests/integration/container_test.py @@ -414,6 +414,9 @@ class VolumeBindTest(BaseIntegrationTest): ['touch', os.path.join(self.mount_dest, self.filename)], ) + @pytest.mark.xfail( + IS_WINDOWS_PLATFORM, reason='Test not designed for Windows platform' + ) def test_create_with_binds_rw(self): container = self.run_with_volume( @@ -429,6 +432,9 @@ class VolumeBindTest(BaseIntegrationTest): inspect_data = self.client.inspect_container(container) self.check_container_data(inspect_data, True) + @pytest.mark.xfail( + IS_WINDOWS_PLATFORM, reason='Test not designed for Windows platform' + ) def test_create_with_binds_ro(self): self.run_with_volume( False, |