{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.triggers.SCMTrigger$SCMTriggerCause",
          "shortDescription" : "Started by an SCM change"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "hudson.model.ParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "BRANCH",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "EMAIL_NOTIFICATIONS",
          "value" : "jenkins-notifications@lists.osmocom.org laforge@gnumonks.org"
        }
      ]
    },
    {
      "_class" : "jenkins.metrics.impl.TimeInQueueAction",
      "blockedDurationMillis" : 0,
      "blockedTimeMillis" : 0,
      "buildableDurationMillis" : 0,
      "buildableTimeMillis" : 0,
      "buildingDurationMillis" : 1666698,
      "executingTimeMillis" : 1666698,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 9219,
      "waitingTimeMillis" : 9219
    },
    {
      
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 590,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "a5bc2a20f439f2ab309a38bfa6e2cf4266e9c11a",
            "branch" : [
              {
                "SHA1" : "a5bc2a20f439f2ab309a38bfa6e2cf4266e9c11a",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "a5bc2a20f439f2ab309a38bfa6e2cf4266e9c11a",
            "branch" : [
              {
                "SHA1" : "a5bc2a20f439f2ab309a38bfa6e2cf4266e9c11a",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "a5bc2a20f439f2ab309a38bfa6e2cf4266e9c11a",
        "branch" : [
          {
            "SHA1" : "a5bc2a20f439f2ab309a38bfa6e2cf4266e9c11a",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "https://gerrit.osmocom.org/python/pyosmocom"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#590",
  "duration" : 1666698,
  "estimatedDuration" : 1187101,
  "executor" : None,
  "fullDisplayName" : "master-pyosmocom #590",
  "id" : "590",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 590,
  "queueId" : 52040,
  "result" : "SUCCESS",
  "timestamp" : 1772803390189,
  "url" : "https://jenkins.osmocom.org/jenkins/view/osmo-gsm-tester/job/master-pyosmocom/590/",
  "builtOn" : "",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/osmocom/utils.py"
        ],
        "commitId" : "9f66b4c4a89b05bc805f6b8efdc3d95d727b9115",
        "timestamp" : 1772803137000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
          "fullName" : "Oliver Smith"
        },
        "authorEmail" : "osmith@sysmocom.de",
        "comment" : "Fix lint errors: avoid equality comparisons to `False`\u000a\u000asrc/osmocom/utils.py:150:8: E712 Avoid equality comparisons to `False`; use `if not signed:` for false checks\u000a    |\u000a148 |     \"\"\"\u000a149 |\u000a150 |     if signed == False and number < 0:\u000a    |        ^^^^^^^^^^^^^^^ E712\u000a151 |         raise ValueError(\"expecting a positive number\")\u000a    |\u000a    = help: Replace with `not signed`\u000a\u000aChange-Id: I2ebb33c498b4a7e6229980462aa51b579fa4f782\u000a",
        "date" : "2026-03-06 13:18:57 +0000",
        "id" : "9f66b4c4a89b05bc805f6b8efdc3d95d727b9115",
        "msg" : "Fix lint errors: avoid equality comparisons to `False`",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/osmocom/utils.py"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/osmocom/tlv.py"
        ],
        "commitId" : "a5bc2a20f439f2ab309a38bfa6e2cf4266e9c11a",
        "timestamp" : 1772803178000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
          "fullName" : "Oliver Smith"
        },
        "authorEmail" : "osmith@sysmocom.de",
        "comment" : "Fix lint errors: test for membership should be `not in`\u000a\u000asrc/osmocom/tlv.py:477:16: E713 [*] Test for membership should be `not in`\u000a    |\u000a475 |         key-value pair, where the key is the snake-reformatted type name of 'self'\"\"\"\u000a476 |         expected_key_name = camel_to_snake(type(self).__name__)\u000a477 |         if not expected_key_name in decoded:\u000a    |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ E713\u000a478 |             raise ValueError(\"Dict %s doesn't contain expected key %s\" % (decoded, expected_key_name))\u000a479 |         self.from_val_dict(decoded[expected_key_name])\u000a    |\u000a    = help: Convert to `not in`\u000a\u000aChange-Id: I2ca3135f1ce38dcc06dc95c38f4b6258a60121cd\u000a",
        "date" : "2026-03-06 13:19:38 +0000",
        "id" : "a5bc2a20f439f2ab309a38bfa6e2cf4266e9c11a",
        "msg" : "Fix lint errors: test for membership should be `not in`",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/osmocom/tlv.py"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
      "fullName" : "Oliver Smith"
    }
  ],
  "runs" : [
    {
      "number" : 590,
      "url" : "https://jenkins.osmocom.org/jenkins/view/osmo-gsm-tester/job/master-pyosmocom/JOB_TYPE=docs,a1=default,a3=default,a4=default,label=osmocom-gerrit/590/"
    },
    {
      "number" : 590,
      "url" : "https://jenkins.osmocom.org/jenkins/view/osmo-gsm-tester/job/master-pyosmocom/JOB_TYPE=pylint,a1=default,a3=default,a4=default,label=osmocom-gerrit/590/"
    },
    {
      "number" : 590,
      "url" : "https://jenkins.osmocom.org/jenkins/view/osmo-gsm-tester/job/master-pyosmocom/JOB_TYPE=pysim,a1=default,a3=default,a4=default,label=simtester/590/"
    },
    {
      "number" : 590,
      "url" : "https://jenkins.osmocom.org/jenkins/view/osmo-gsm-tester/job/master-pyosmocom/JOB_TYPE=test,a1=default,a3=default,a4=default,label=osmocom-gerrit/590/"
    }
  ]
}