updated attribute caught by tests and re-ran test data so test pass #935
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install OS dependencies | |
run: | | |
sudo timedatectl set-timezone America/New_York | |
sudo apt-get update | |
sudo apt-get install libgtk-3-dev | |
- name: Install Python dependencies | |
run: | | |
pip install attrdict3 | |
pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04 wxPython | |
pip install . | |
pip install libpff-python==20211114 | |
- name: Test with pytest | |
run: | | |
pytest -vv |