We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd7c04e commit f8e5478Copy full SHA for f8e5478
core/tests/compose_fixtures/port_multiple/compose.yaml
@@ -6,6 +6,7 @@ services:
6
- '81'
7
- '82'
8
- target: 80
9
+ published: "5000-5999"
10
host_ip: 127.0.0.1
11
protocol: tcp
12
command:
@@ -18,6 +19,7 @@ services:
18
19
init: true
20
ports:
21
22
23
24
25
core/tests/test_utils.py
@@ -33,6 +33,7 @@ def test_is_windows(monkeypatch: MonkeyPatch) -> None:
33
34
35
def test_is_arm(monkeypatch: MonkeyPatch) -> None:
36
+ monkeypatch.setattr("platform.machine", lambda: "x86_64")
37
assert not utils.is_arm()
38
monkeypatch.setattr("platform.machine", lambda: "arm64")
39
assert utils.is_arm()
0 commit comments