Skip to content

Commit

Permalink
Use dbus-run-session to drop X11 dependency
Browse files Browse the repository at this point in the history
The dbus-run-session helper allows to run a session scoped D-Bus daemon
without X11 dependency.
  • Loading branch information
agners committed Aug 22, 2024
1 parent 95df9a6 commit 9d1398a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/big_endian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
"uname -a &&
lscpu | grep Endian &&
apt-get -y update &&
apt-get -y install python3 git python3.8-venv dbus dbus-x11 python3-gi libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0 &&
apt-get -y install python3 git python3.8-venv dbus-daemon python3-gi libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0 &&
python3 --version &&
python3 -c 'import sys; print(sys.byteorder)' &&
pip3 install poetry &&
git clone https://github.com/bluetooth-devices/dbus-fast &&
cd dbus-fast &&
poetry install --only=main,dev &&
export $(dbus-launch); poetry run pytest --cov-report=xml --timeout=5
dbus-run-session -- poetry run pytest --cov-report=xml --timeout=5
"
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Update apt
run: sudo apt update
- name: Install libs
run: sudo apt-get install -y dbus dbus-x11 python3-gi libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0
run: sudo apt-get install -y dbus-daemon python3-gi libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0
- name: Install poetry
run: pipx install poetry
- name: Set up Python
Expand All @@ -70,7 +70,7 @@ jobs:
REQUIRE_CYTHON=1 poetry install --only=main,dev
fi
- name: Test with Pytest
run: export $(dbus-launch); poetry run pytest --cov-report=xml --timeout=5
run: dbus-run-session -- poetry run pytest --cov-report=xml --timeout=5
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 9d1398a

Please sign in to comment.