Compare commits

..

3 commits

Author SHA1 Message Date
6f46386790 chore(deps): update nixpkgs to nixos-25.05
Some checks failed
CI / build (push) Failing after 1m57s
CI / deploy (system-physical) (push) Has been skipped
CI / deploy (system-vm) (push) Has been skipped
CI / deploy (docs-ops.qo.is) (push) Has been skipped
2025-06-29 16:00:31 +02:00
2ddc256314 chore(deps): lock file maintenance
All checks were successful
CI / build (push) Successful in 1m2s
CI / deploy (docs-ops.qo.is) (push) Successful in 41s
CI / deploy (system-vm) (push) Successful in 1m3s
CI / deploy (system-physical) (push) Successful in 1m37s
2025-06-28 20:00:39 +02:00
afc2be57f5 Fix formatting
All checks were successful
CI / build (push) Successful in 1m3s
CI / deploy (docs-ops.qo.is) (push) Successful in 1m6s
CI / deploy (system-vm) (push) Successful in 1m42s
CI / deploy (system-physical) (push) Successful in 5m24s
2025-06-26 00:07:30 +03:00
2 changed files with 12 additions and 13 deletions

19
flake.lock generated
View file

@ -27,11 +27,11 @@
]
},
"locked": {
"lastModified": 1750680230,
"narHash": "sha256-kD88T/NqmcgfOBFAwphN30ccaUdj6K6+LG0XdM2w2LA=",
"lastModified": 1750903843,
"narHash": "sha256-Ng9+f0H5/dW+mq/XOKvB9uwvGbsuiiO6HrPdAcVglCs=",
"owner": "nix-community",
"repo": "disko",
"rev": "8fd2d6c75009ac75f9a6fb18c33a239806778d01",
"rev": "83c4da299c1d7d300f8c6fd3a72ac46cb0d59aae",
"type": "github"
},
"original": {
@ -133,11 +133,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1750622754,
"narHash": "sha256-kMhs+YzV4vPGfuTpD3mwzibWUE6jotw5Al2wczI0Pv8=",
"lastModified": 1750969886,
"narHash": "sha256-zW/OFnotiz/ndPFdebpo3X0CrbVNf22n4DjN2vxlb58=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c7ab75210cb8cb16ddd8f290755d9558edde7ee1",
"rev": "a676066377a2fe7457369dd37c31fd2263b662f4",
"type": "github"
},
"original": {
@ -156,7 +156,6 @@
"locked": {
"lastModified": 1749920008,
"narHash": "sha256-wn3U2q/+OQYErVyoY9kwZP/fXcDG4ewhJkHX7qHzq8g=",
"ref": "refs/heads/main",
"rev": "5f8ba2025848dd30539c42ef1f7e6c6f917e70d9",
"revCount": 19,
"type": "git",
@ -220,11 +219,11 @@
]
},
"locked": {
"lastModified": 1749194973,
"narHash": "sha256-eEy8cuS0mZ2j/r/FE0/LYBSBcIs/MKOIVakwHVuqTfk=",
"lastModified": 1750931469,
"narHash": "sha256-0IEdQB1nS+uViQw4k3VGUXntjkDp7aAlqcxdewb/hAc=",
"owner": "numtide",
"repo": "treefmt-nix",
"rev": "a05be418a1af1198ca0f63facb13c985db4cb3c5",
"rev": "ac8e6f32e11e9c7f153823abc3ab007f2a65d3e1",
"type": "github"
},
"original": {

View file

@ -14,9 +14,9 @@ def test(subtest, webserver):
value = node.succeed(
f"curl -s --no-location -o /dev/null -w '%{{{variable}}}' '{url}'"
)
assert value == expected, (
f"expected {variable} to be '{expected}' but got '{value}'"
)
assert (
value == expected
), f"expected {variable} to be '{expected}' but got '{value}'"
def expect_http_code(node, code, url):
curl_variable_test(node, "http_code", code, url)