Skip to content

Stop using pipes, fix write arg type. #36

Stop using pipes, fix write arg type.

Stop using pipes, fix write arg type. #36

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
set -e
# sudo add-apt-repository universe
# sudo apt-cache policy
sudo apt-get install -qy python3-ledger tox python3-pytest gobject-introspection
# Needed to allow Tox to run in the current env.
# Current env necessary because we are installing GTK+ and other
# libraries needed for the programs.
pip3 install tox-current-env pytest
- name: Run tests
run: |
# pylint $(git ls-files '*.py')
tox --current-env -v