From 252c8293ce94278cd106582059c5abe9452c199c Mon Sep 17 00:00:00 2001 From: Dmitri Bogomolov <4glitch@gmail.com> Date: Mon, 15 Nov 2021 14:55:16 +0200 Subject: [PATCH] Run tests in portable mode in a separate step --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 308bcc07..a48537f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,6 +47,12 @@ jobs: python -m pip install --upgrade pip pip install wheel pip install -r requirements.txt + - name: Portable run + if: ${{ matrix.os == 'ubuntu-18.04' && matrix.python-version == '2.7' }} + run: | + python -m pybitmessage.bitmessagemain -t + - name: Install + run: | python setup.py install - name: Install additional python dependencies if: ${{ matrix.python-version == '3.8' }}