Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
h0anle committed Sep 26, 2024
1 parent 65402f8 commit 1880596
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]

steps:
- name: Checkout code
Expand All @@ -25,12 +25,15 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install system dependencies (for PySide6)
run: sudo apt-get install -y libxkbcommon-x11-0

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install
python -m pip install -r requirements.txt
- name: Run tests
run: |
Expand Down
Binary file added requirements.txt
Binary file not shown.
2 changes: 0 additions & 2 deletions tests/test_1.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import pytest

# from data_test.examples.ex_reading_all_suported_data import ex_reading_all_suported_data


def test_1():
print('test pytest')
Expand Down

0 comments on commit 1880596

Please sign in to comment.