We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0542d9 commit 6caa2c0Copy full SHA for 6caa2c0
2 files changed
tests/integration/api_plugin_test.py
@@ -1,4 +1,5 @@
1
import os
2
+import platform
3
4
import pytest
5
@@ -11,6 +12,10 @@
11
12
13
14
@requires_api_version('1.25')
15
+@pytest.mark.skipif(
16
+ platform.machine().lower() not in ('amd64', 'x86_64'),
17
+ reason='vieux/sshfs plugin is only supported on amd64',
18
+)
19
class PluginTest(BaseAPIIntegrationTest):
20
@classmethod
21
def teardown_class(cls):
tests/integration/credentials/store_test.py
import random
import shutil
import sys
@@ -13,7 +14,10 @@
StoreError,
)
-
+ reason='docker-credential-pass test helper is only supported on amd64',
class TestStore:
22
def teardown_method(self):
23
for server in self.tmp_keys:
0 commit comments