Run tests in portable mode in a separate step

This commit is contained in:
Dmitri Bogomolov 2021-11-15 14:55:16 +02:00
parent 3fb2e1a55f
commit 252c8293ce
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -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' }}