Skip to content

Guard snapshot process signals in GUI#2457

Open
Ajeem-git wants to merge 3 commits into
bit-team:devfrom
Ajeem-git:issue-1604-process-lookup-guard
Open

Guard snapshot process signals in GUI#2457
Ajeem-git wants to merge 3 commits into
bit-team:devfrom
Ajeem-git:issue-1604-process-lookup-guard

Merge branch 'dev' into issue-1604-process-lookup-guard

4f21b25
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jun 5, 2026 in 2m 42s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #2457 Guard snapshot process signals in GUI.
Any changes that have been made to the dev branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Noble)
Python Versions 3.13, 3.14
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "noble",
  "arch": [
    "amd64"
  ],
  "python": [
    "3.13",
    "3.14"
  ],
  "addons": {
    "ssh_known_hosts": [
      "localhost"
    ]
  },
  "env": [
    "jobs={:PYTHONUNBUFFERED=>\"1\"}"
  ],
  "before_install": [
    "sudo rm -f /etc/apt/sources.list.d/mongodb*.list",
    "sudo apt-key del 90CFB1F5",
    "sudo apt-get -qq update",
    "sudo apt-get install -y sshfs screen util-linux libdbus-1-dev",
    "sudo apt-get install -y ruby rubygems asciidoctor gocryptfs pandoc",
    "sudo gem install asciidoctor"
  ],
  "jobs": {
    "exclude": [
      {
        "python": "3.13"
      }
    ]
  },
  "install": [
    "pip install -U pip",
    "pip install pylint ruff flake8 codespell pyfakefs keyring",
    "pip install pyqt6 dbus-python",
    "ssh-keygen -b 2048 -t rsa -f /home/travis/.ssh/id_rsa -N \"\"",
    "cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys",
    "eval `ssh-agent -s`"
  ],
  "script": [
    "set -e",
    "ruff --version",
    "flake8 --version",
    "pylint --version",
    "codespell --version",
    "python -m compileall common common/test common/plugins qt qt/test qt/plugins",
    "cd common",
    "./configure",
    "make",
    "sudo make install",
    "pytest --verbose",
    "cd ..",
    "cd qt",
    "./configure",
    "make",
    "pytest --verbose",
    "cd ..",
    "codespell"
  ]
}