summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/bleeding.yml3
-rw-r--r--.github/workflows/ci.yml5
2 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/bleeding.yml b/.github/workflows/bleeding.yml
index 7b1eae77d..84f61b679 100644
--- a/.github/workflows/bleeding.yml
+++ b/.github/workflows/bleeding.yml
@@ -27,7 +27,8 @@ jobs:
- uses: actions/checkout@v2
- name: Set up problem matchers
run: "python scripts/dev/ci/problemmatchers.py py3 ${{ runner.temp }}"
- - run: tox -e bleeding
+ - name: Run tox
+ run: dbus-run-session tox -e bleeding
irc:
timeout-minutes: 2
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3476f2abc..4d97e2acc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -90,7 +90,8 @@ jobs:
- uses: actions/checkout@v2
- name: Set up problem matchers
run: "python scripts/dev/ci/problemmatchers.py py38 ${{ runner.temp }}"
- - run: dbus-run-session tox -e py
+ - name: Run tox
+ run: dbus-run-session tox -e py
tests:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
@@ -166,7 +167,7 @@ jobs:
- name: "Run ${{ matrix.testenv }}"
run: "dbus-run-session -- tox -e ${{ matrix.testenv }} -- ${{ matrix.args }}"
if: "startsWith(matrix.os, 'ubuntu-')"
- - name: "Run ${{ matrix.testenv }}"
+ - name: "Run ${{ matrix.testenv }} without DBus"
run: "tox -e ${{ matrix.testenv }} -- ${{ matrix.args }}"
if: "!startsWith(matrix.os, 'ubuntu-')"
- name: Analyze backtraces