Skip to content

Commit

Permalink
remove cpuinfo matrix, correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakers-the-rat committed Jul 9, 2024
1 parent 6af323d commit 7b77f43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
cpuinfo-version: ["5.0.0", "6.0.0", "7.0.0", "8.0.0", "9.0.0"]
python-version: ["3.9", "3.10", "3.11"]

runs-on: ubuntu-latest

Expand All @@ -41,9 +40,6 @@ jobs:
- name: Install package dependencies
run: pip install -e ".[tests]"

- name: Install specific cpuinfo version (testing)
run: pip install --force-reinstall "py-cpuinfo==${{ matrix.cpuinfo-version }}"

- name: Run Tests
run: |
herbstluftwm &
Expand Down
4 changes: 2 additions & 2 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def on_gh_actions() -> bool:

def pytest_collection_modifyitems(config, items):

skip_gui = pytest.mark.xfail('GUI is not working with pyside6 atm')
skip_gui = pytest.mark.skip('GUI is not working with pyside6 atm')
for item in items:
if item.get_clsoest_marker('gui'):
if item.get_closest_marker('gui'):
item.add_marker(skip_gui)

0 comments on commit 7b77f43

Please sign in to comment.