nixos/tests/loki: satisfy linter

Apparently, the linter used for python test-scripts just decided that
a reformat of the testscript is now necessary.
gstqt5
Maximilian Bosch 2020-12-28 00:37:13 +01:00
parent fbbe4ad559
commit e5e7c9b0f9
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
1 changed files with 3 additions and 1 deletions

View File

@ -46,7 +46,9 @@ import ./make-test-python.nix ({ lib, pkgs, ... }:
machine.wait_for_open_port(9080)
machine.succeed("echo 'Loki Ingestion Test' > /var/log/testlog")
# should not have access to journal unless specified
machine.fail("systemctl show --property=SupplementaryGroups promtail | grep -q systemd-journal")
machine.fail(
"systemctl show --property=SupplementaryGroups promtail | grep -q systemd-journal"
)
machine.wait_until_succeeds(
"${pkgs.grafana-loki}/bin/logcli --addr='http://localhost:3100' query --no-labels '{job=\"varlogs\",filename=\"/var/log/testlog\"}' | grep -q 'Loki Ingestion Test'"
)