Skip to content

Commit

Permalink
Merge pull request #756 from gotmax23/no-pytest-runner
Browse files Browse the repository at this point in the history
remove deprecated pytest-runner
  • Loading branch information
mattrose authored Jan 26, 2024
2 parents 6d225c7 + de48b07 commit 6d5cd04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
python setup.py develop
pip install -e '.[test]'
- name: Compile all scripts
run: python -m compileall -f terminatorlib/ tests/ remotinator terminator

- name: Run tests
run: |
pip install -e '.[test]'
xvfb-run -a python setup.py test
xvfb-run -a pytest
4 changes: 0 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,17 +219,13 @@ def _find_css_files (self):
'terminatorlib',
'terminatorlib.plugins',
],
setup_requires=[
'pytest-runner',
],
install_requires=[
'pycairo',
'configobj',
'dbus-python',
'pygobject',
'psutil',
],
tests_require=test_deps,
extras_require={'test': test_deps},
package_data={'terminatorlib': ['preferences.glade', 'layoutlauncher.glade']},
cmdclass={'build': BuildData, 'install_data': InstallData, 'uninstall': Uninstall},
Expand Down

0 comments on commit 6d5cd04

Please sign in to comment.