Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to latest containers #906

Merged
merged 2 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions settings.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
FIRMWARE_VERSION=v1.3.3
DIAGNOSTICS_VERSION=e35aaf7
CONFIG_VERSION=a198b83
PKTFWD_VERSION=5c3c90a
FIRMWARE_VERSION=v1.3.4
DIAGNOSTICS_VERSION=071927a
CONFIG_VERSION=d62188e
PKTFWD_VERSION=6b52278
GATEWAYRS_VERSION=5428419
MULTIPLEXER_VERSION=a1fc09b
MULTIPLEXER_VERSION=61cf9d7
18 changes: 9 additions & 9 deletions tests/test_output_by_variant.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_nebra_indoor1_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {nebra_indoor1_output_file} config -q', shell=True)
f'docker compose -f {nebra_indoor1_output_file} config -q', shell=True)

def test_nebra_outdoor1_compose_output_is_valid(self):
dc = DockerComposer()
Expand All @@ -66,7 +66,7 @@ def test_nebra_outdoor1_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {nebra_outdoor1_output_file} config -q', shell=True)
f'docker compose -f {nebra_outdoor1_output_file} config -q', shell=True)

def test_nebra_indoor2_compose_output_is_valid(self):
dc = DockerComposer()
Expand All @@ -76,7 +76,7 @@ def test_nebra_indoor2_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {nebra_indoor2_output_file} config -q', shell=True)
f'docker compose -f {nebra_indoor2_output_file} config -q', shell=True)

def test_nebra_outdoor2_compose_output_is_valid(self):
dc = DockerComposer()
Expand All @@ -86,7 +86,7 @@ def test_nebra_outdoor2_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {nebra_outdoor2_output_file} config -q', shell=True)
f'docker compose -f {nebra_outdoor2_output_file} config -q', shell=True)

def test_syncrobit_compose_output_is_valid(self):
dc = DockerComposer()
Expand All @@ -96,7 +96,7 @@ def test_syncrobit_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {syncrobit_output_file} config -q', shell=True)
f'docker compose -f {syncrobit_output_file} config -q', shell=True)

def test_pycom_compose_output_is_valid(self):
dc = DockerComposer()
Expand All @@ -106,7 +106,7 @@ def test_pycom_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {pycom_output_file} config -q', shell=True)
f'docker compose -f {pycom_output_file} config -q', shell=True)

def test_controllino_compose_output_is_valid(self):
dc = DockerComposer()
Expand All @@ -116,7 +116,7 @@ def test_controllino_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {controllino_output_file} config -q', shell=True)
f'docker compose -f {controllino_output_file} config -q', shell=True)

def test_rak_compose_output_is_valid(self):
dc = DockerComposer()
Expand All @@ -126,7 +126,7 @@ def test_rak_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {rak_output_file} config -q', shell=True)
f'docker compose -f {rak_output_file} config -q', shell=True)

def test_bobcat_px30_compose_output_is_valid(self):
dc = DockerComposer()
Expand All @@ -136,7 +136,7 @@ def test_bobcat_px30_compose_output_is_valid(self):
# so if this runs without that, it's considered successful as
# `docker-compose config -q` returns 1 on invalid config
check_call(
f'docker-compose -f {bobcat_px30_output_file} config -q', shell=True)
f'docker compose -f {bobcat_px30_output_file} config -q', shell=True)

def test_variant_is_invalid(self):
dc = DockerComposer()
Expand Down