Skip to content

Fix incorrect type cast in vterm (apply_mapping should return bytes) #79

Fix incorrect type cast in vterm (apply_mapping should return bytes)

Fix incorrect type cast in vterm (apply_mapping should return bytes) #79

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 6
matrix:
os: [ "ubuntu-latest"] # , "windows-latest" # enable windows after Windows driver will be added
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r test_requirements.txt
- name: Install package for test
run: pip install -e .
- name: Test
run: |
coverage run -m unittest discover -s urwid -v
coverage report
# - name: Coveralls
# uses: coverallsapp/github-action@v1